Files
Nicolas Roche 58ea71a57a Add testsuite framework for gnatcoll python 3.x binding
Part of T702-023

Change-Id: I73b3541df5bb5c441310c0ebb85a158cc9fe5eac
2020-07-02 04:08:27 -07:00

16 lines
475 B
Plaintext

with "gnatcoll_python";
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");
for Object_Dir use "obj";
package Compiler is
for Default_Switches ("Ada") use ("-g", "-gnata", "-gnatVa", "-gnatQ", "-gnato", "-gnatwe", "-Wall",
"-fstack-check");
end Compiler;
end Test;