blob: 7aa07003a122a418a5b44d3f486e44d2d9bb9e0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
with "build_common";
project Build_Tests is
for Languages use ("Ada", "C");
for Source_Dirs use ("src/tkm", "src/ees", "tests");
for Main use ("test_runner");
for Object_Dir use Build_Common.Obj_Dir;
package Compiler is
for Default_Switches ("c") use Build_Common.C_Compiler_Switches;
end Compiler;
end Build_Tests;
|