-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloud_sync_tuner.gpr
More file actions
31 lines (25 loc) · 794 Bytes
/
Copy pathcloud_sync_tuner.gpr
File metadata and controls
31 lines (25 loc) · 794 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
-- SPDX-License-Identifier: MPL-2.0
-- Cloud Sync Tuner - GNAT Project File
project Cloud_Sync_Tuner is
for Source_Dirs use ("src");
for Object_Dir use "obj";
for Exec_Dir use "bin";
for Main use ("cloud_sync_tuner.adb");
package Compiler is
for Default_Switches ("Ada") use (
"-gnatwa", -- All warnings
"-gnatyy", -- Style checks
"-gnatVa", -- Validity checks
"-gnato", -- Overflow checks
"-fstack-check",
"-g", -- Debug info
"-O2" -- Optimization
);
end Compiler;
package Binder is
for Default_Switches ("Ada") use ("-E");
end Binder;
package Linker is
for Default_Switches ("Ada") use ("-g");
end Linker;
end Cloud_Sync_Tuner;