summaryrefslogtreecommitdiff
path: root/graphics/generic_image_decoder/files/construct.gpr
blob: 37522170249afc7f02ebd6b83cfcc39784c75655 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
project Construct is

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

   package Compiler is
      for Default_Switches ("ada") use ("-O3", "-gnato", "-ffunction-sections",
         "-funroll-loops", "-fpeel-loops", "-ftracer", "-funswitch-loops",
         "-fweb", "-frename-registers");
   end Compiler;

   package Builder is
      for Default_Switches ("ada") use ("-C");
   end Builder;

end Construct;