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


library project Directed_Graph is


    for Languages use ("Ada");


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


    package Compiler is
        for Default_Switches("Ada") use ("-gnaty4aAbcefhiklM100nprt");
    end Compiler;


end Directed_Graph;