File: build_all.gpr

package info (click to toggle)
libadabindx 0.7.2-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,136 kB
  • ctags: 32
  • sloc: ada: 35,597; makefile: 556; sh: 10
file content (11 lines) | stat: -rw-r--r-- 455 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
project Build_All is
   for Source_Dirs use ("build");
   for Object_Dir use "build";
   for Main use ("build_all.adb");
   package Compiler is
      for Default_Switches ("Ada") use ("-gnatfno", "-O3", "-gnatVa");
      for Switches ("x_lib-tasking.adb") use ("-gnatfno", "-O3");
      for Switches ("i-csstli.adb") use ("-gnatfno", "-O3", "-gnatg");
      for Switches ("i-cwstri.adb") use ("-gnatfno", "-O3", "-gnatg");
   end Compiler;
end Build_All;