File: test.gpr

package info (click to toggle)
libgnatcoll-db 25.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 11,592 kB
  • sloc: ansic: 128,019; ada: 28,171; sql: 15,778; python: 2,266; makefile: 621; sh: 45
file content (14 lines) | stat: -rw-r--r-- 435 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--  Default project use for tests
--
--  The scenario variable TEST_SOURCES is automatically set by the
--  driver to point to the test sources.
with "gnatcoll";

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