Files
alire-index-community/deps/simple_logging/simple_logging.gpr
T
Alejandro R. Mosteo 7b6077df69 Simple logging lib
2018-02-07 01:04:53 +01:00

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;