diff options
Diffstat (limited to 'proj')
-rw-r--r-- | proj/common.gpr | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/proj/common.gpr b/proj/common.gpr new file mode 100644 index 0000000..64c4dc1 --- /dev/null +++ b/proj/common.gpr @@ -0,0 +1,14 @@ + + +abstract project Common is + + + package Compiler is + for Default_Switches ("Ada") use ("-gnaty4aAbcefhiklM100nprt"); + for Default_Switches("C++") use ("-Wall","-Wextra","-std=c++11"); + end Compiler; + + +end Common; + + |