summarylogtreecommitdiffstats
path: root/example.gpr
blob: bd61316bda2a297f966276b380e99a4263127333 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
with "ini_file_manager";
project Example is

   for Exec_Dir use "/tmp";
   for Object_Dir use "/tmp";
   for Main use ("test_config.adb");

   package Compiler is
      for Default_Switches ("ada") use ("-O2", "-gnat05");
   end Compiler;

end Example;