File: test.gpr

package info (click to toggle)
libgnatcoll-db 18-4
  • links: PTS
  • area: main
  • in suites: buster
  • size: 2,268 kB
  • sloc: ada: 23,786; python: 2,166; makefile: 486; sh: 34; ansic: 18
file content (13 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
--  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");
   for Source_Dirs use (".", Test_Sources);
   for Main use ("test.adb");
   for Languages use ("Ada");
   for Object_Dir use "obj";
end Test;