aboutsummaryrefslogtreecommitdiff
path: root/asndfile.gpr
blob: 52a80de7f2daaa3c4186f77de210aa16e5d5aa71 (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
25
26


with

    "proj/common";


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 Builder  renames Common.Builder;
    package Compiler renames Common.Compiler;
    package Binder   renames Common.Binder;


end Asndfile;