File: test.gpr

package info (click to toggle)
libgnatcoll-bindings 25.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,412 kB
  • sloc: ada: 18,696; python: 1,597; ansic: 1,422; cpp: 581; makefile: 147; sh: 114
file content (18 lines) | stat: -rw-r--r-- 533 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--  Default project use for tests
--
--  The scenario variable TEST_SOURCES is automatically set by the
--  driver to point to the test sources.
with "gnatcoll_core";

project Test is
   Test_Sources := External("TEST_SOURCES");
   Support_Sources := External("SUPPORT_SOURCES");
   for Source_Dirs use (".", Test_Sources, Support_Sources);
   for Main use ("test.adb");
   for Languages use ("Ada", "C");
   for Object_Dir use "obj";

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