From 049d2a9a337331295b4a2d4ad13061bc73536236 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sun, 2 Jul 2023 21:36:34 +1200 Subject: Initial commit --- example.gpr | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 example.gpr (limited to 'example.gpr') diff --git a/example.gpr b/example.gpr new file mode 100644 index 0000000..5170e1f --- /dev/null +++ b/example.gpr @@ -0,0 +1,31 @@ + + +with "asndfile"; + + +project Example is + + + for languages use ("Ada"); + + + for Source_Dirs use ("example"); + for Object_Dir use "obj"; + for Exec_Dir use "bin"; + for Main use ("file_info_example.adb", "virtual_io_example.adb"); + + + package Builder is + for Executable("file_info_example.adb") use "info_example"; + for Executable("virtual_io_example.adb") use "virtual_example"; + end Builder; + + + package Compiler is + for Default_Switches("Ada") use ("-gnaty4aAbcefhiklM100nprt"); + end Compiler; + + +end Example; + + -- cgit