mirror of
https://github.com/AdaCore/gpr.git
synced 2026-02-12 12:58:39 -08:00
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
13 lines
244 B
Plaintext
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; |