forked from mk270/whitakers-words
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.gpr
More file actions
35 lines (29 loc) · 690 Bytes
/
Copy pathtools.gpr
File metadata and controls
35 lines (29 loc) · 690 Bytes
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
35
with "shared.gpr";
with "words_engine.gpr";
standard project Tools is
for Main use
("check.adb",
"dictflag.adb",
"dictord.adb",
"dictpage.adb",
"fil2dict.adb",
"fixord.adb",
"invert.adb",
"invstems.adb",
"linedict.adb",
"linefile.adb",
"listdict.adb",
"listord.adb",
"number.adb",
"oners.adb",
"page2htm.adb",
"patch.adb",
"slash.adb",
"sorter.adb",
"uniqpage.adb");
for Source_Dirs use ("src/" & project'Name);
for Exec_Dir use "bin";
for Object_Dir use "obj";
package Compiler renames Shared.Compiler;
package Linker renames Shared.Linker;
end Tools;