23 lines
542 B
Plaintext
23 lines
542 B
Plaintext
project Simple_Logging is
|
|
|
|
for Library_Name use "simple_logging";
|
|
for Library_Version use "0.0.0";
|
|
|
|
for Source_Dirs use (".", "src");
|
|
for Object_Dir use "obj";
|
|
for Library_Dir use "lib";
|
|
|
|
package Builder is
|
|
for Switches ("ada") use ("-j0", "-g");
|
|
end Builder;
|
|
|
|
package Compiler is
|
|
for Switches ("ada") use ("-gnatVa", "-gnatwa", "-g", "-O2", "-gnata", "-gnat12", "-gnato", "-fstack-check");
|
|
end Compiler;
|
|
|
|
package Binder is
|
|
for Switches ("ada") use ("-Es");
|
|
end Binder;
|
|
|
|
end Simple_Logging;
|