summaryrefslogtreecommitdiff
path: root/asndfile.gpr
blob: 07c41c5ad181e54d7f72b3d6f645adae5281bfbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24


library project Asndfile is


    for Languages use ("Ada", "C");


    for Source_Dirs use ("src");
    for Object_Dir use "obj";
    for Library_Dir use "lib";
    for Library_Name use "asndfile";
    for Library_Kind use "dynamic";


    package Compiler is
        for Default_Switches ("Ada") use ("-gnaty4aAbcefhiklM100nprt");
        for Default_Switches ("C") use ("-Wall", "-Wextra");
    end Compiler;


end Asndfile;