-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdstrings.gpr
More file actions
22 lines (17 loc) · 777 Bytes
/
dstrings.gpr
File metadata and controls
22 lines (17 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
project dStrings is
-- $Revision:$
type Hware_Option is ("sparc", "amd64", "x86", "pi", "win", "pi64");
-- Hware : Hware_Option := external ("hware", "pi");
Hware : Hware_Option := external ("hware", "win");
for Languages use ("ada", "c");
for Source_Dirs use (".");
-- Using "hware" variable for obj directory
for Object_Dir use "obj_" & hware & "/";
for Source_Files use ("dstrings.ads", "dstrings.adb",
"dstrings-io.ads", "dstrings-io.adb",
"dstrings-serial_comms.ads", "dstrings-serial_comms.adb",
"serial_communications.ads", "serial_communications.adb",
"serial_comms_h.ads", "serial_comms.h", "serial_comms.c",
"os_constants.ads",
"strings_functions.ads", "strings_functions.adb");
end dStrings;