Files
gpr/bindings/python/tests/projects/attribute_project/attribute_project.gpr
Nicolas Roche ce750e1b42 Add GPR2 Python and C binding
T713-036

Change-Id: I3407ea72e65c7e400fce60cbda5118c658324d48
2022-03-02 10:42:48 +00:00

14 lines
362 B
Plaintext

project Attribute_Project is
for Source_Dirs use (".");
package Compiler is
for Switches("Ada") use ("-fada");
for Switches("ada_pkg.ads") use ("-fada_pkg");
for Switches(others) use ("-fothers");
for Switches("c*") use Compiler'Switches("b.ads");
for Switches("b.ads") use ("-fb");
end Compiler;
end Attribute_Project;