diff options
| author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-11-19 18:28:20 +1300 |
|---|---|---|
| committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-11-19 18:28:20 +1300 |
| commit | 0783aeb9f463efb7e600ffa2eadb5b1c078fd957 (patch) | |
| tree | 9f05e2921c9eec461f153c74f13219acf4513d59 /examples.gpr | |
| parent | d39eadddc587b3a380239fe76e5ad426638a8384 (diff) | |
Zebra problem
Diffstat (limited to 'examples.gpr')
| -rw-r--r-- | examples.gpr | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/examples.gpr b/examples.gpr index e69de29..4d97b81 100644 --- a/examples.gpr +++ b/examples.gpr @@ -0,0 +1,37 @@ + + +with + + "kompsos", + "proj/common"; + + +project Examples is + + + for Languages use ("Ada"); + + for Source_Dirs use ("example"); + for Object_Dir use "obj"; + for Exec_Dir use "bin"; + + for Main use + ("zebra"); + + package Builder is + for Executable ("zebra") use "zebra"; + + for Default_Switches ("Ada") use + Common.Builder'Default_Switches ("Ada"); + for Global_Compilation_Switches ("Ada") use + Common.Builder'Global_Compilation_Switches ("Ada"); + end Builder; + + package Compiler renames Common.Compiler; + package Binder renames Common.Binder; + package Linker renames Common.Linker; + + +end Examples; + + |
