summaryrefslogtreecommitdiff
path: root/complex_fixed.gpr
blob: 1b1601034c47a56a65457d6c0397780b117b9136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19


library project Complex_Fixed is

    for Languages use ("Ada");

    for Source_Dirs use ("src");
    for Object_Dir use "obj";
    for Library_Dir use "lib";
    for Library_Name use "complex_fixed";
    for Library_Kind use "dynamic";

    package Compiler is
        for Default_Switches("Ada") use ("-gnaty4aAbcefhiklM99nprt");
    end Compiler;

end Complex_Fixed;