Files
libadalang/testsuite/tests/python/prep_project/syntax_error.gpr
Pierre-Marie de Rodat abaa3bb9fc Testsuite: fix project files so that source dirs exist
The upcoming transition to GPR2 for the C/Python APIs will reveal
complaints about missing source directories. This is a good improvement,
but not the point of these testcases, so adjust them so that source
directories are not missing.
2024-08-19 11:21:39 +00:00

11 lines
227 B
Plaintext

project Syntax_Error is
for Source_Dirs use ("src/normal");
for Object_Dir use "obj/syntax_error";
package Compiler is
for Default_Switches ("Ada") use ("-gnatep=foo.prep");
end Compiler;
end Syntax_Error;