-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripted_testing.gpr
34 lines (26 loc) · 1.18 KB
/
scripted_testing.gpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
-- Copyright Simon Wright <[email protected]>
-- This package is free software; you can redistribute it and/or
-- modify it under terms of the GNU General Public License as
-- published by the Free Software Foundation; either version 3, or
-- (at your option) any later version. This package is distributed
-- in the hope that it will be useful, but WITHOUT ANY WARRANTY;
-- without even the implied warranty of MERCHANTABILITY or FITNESS
-- FOR A PARTICULAR PURPOSE. See the GNU General Public License for
-- more details. You should have received a copy of the GNU General
-- Public License distributed with this package; see file COPYING3.
-- If not, go to http://www.gnu.org/licenses for a complete copy of
-- the license.
with "tash";
with "config/scripted_testing_config";
library project Scripted_Testing is
for Library_Name use "scripted_testing";
for Library_Kind use "static";
for Library_Dir use "lib";
for Source_Dirs use ("src");
for Object_Dir use ".build";
for Create_Missing_Dirs use "true";
package Compiler is
for Default_Switches ("ada") use
Scripted_Testing_Config.Ada_Compiler_Switches;
end Compiler;
end Scripted_Testing;