summarylogtreecommitdiffstats
path: root/construct.gpr
blob: 74c5d83e9ef9178fdac3876f23b54fcac213e9ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
project Construct is

   for Languages use ("ada");
   for Source_Dirs use ("src");
   for Object_Dir use "obj";
   for Library_Name use "inifiles";
   for Library_Dir use "lib";
   for Library_Kind use "static";

   package Builder is
      for Default_Switches ("ada") use ("-gnatf", "-gnatws", "-O2");
   end Builder;

end Construct;