summaryrefslogtreecommitdiff
path: root/proj/common.gpr
blob: 64c4dc1f10e75c04173378823011741147af2844 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;