Files
Jerome Lambourg 2334b46253 Add means to retrieve the include path for a given view and language
This path is the list of source directories visible by the compiler when
building an object for a given view.

Preparatory work for eng/gpr/gpr-issues#269
2024-03-28 10:53:51 +00:00

13 lines
244 B
Plaintext

with "gpr2";
project Test is
for Source_Dirs use ("src");
for Object_Dir use "obj";
for Exec_Dir use ".";
for Main use ("main.adb");
package Compiler is
for Switches (others) use ("-g", "-O1");
end Compiler;
end Test;