mirror of
https://github.com/AdaCore/gpr.git
synced 2026-02-12 12:58:39 -08:00
This change adds the new Ada parser and improves overall performance of libgpr2. With the new Ada parser usage, the name resolution of units is now properly implemented. What changes: * the Ada parser is moved to the new Ada parser from master * its use is now systematic for sources not having a naming exception * in GPR2.Build.View_Tables, we should always use references to the table and never manipulate the object directly (very costly with lots of sources). * re-enable two tests: "runtime" and "source-interface" * adapt various other tests. Fixes eng/gpr/gpr-issues#130
7 lines
123 B
Plaintext
7 lines
123 B
Plaintext
with "gpr2";
|
|
project Test is
|
|
for Main use ("main.adb");
|
|
for Object_Dir use "obj";
|
|
for Exec_Dir use ".";
|
|
end Test;
|