Merge pull request #7 from mgrojo/master

Fix for building using FSF GNAT 9
This commit is contained in:
Anthony Arnold 2021-12-08 23:44:52 +10:00 committed by GitHub
commit e2c55d0479
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 7 deletions

View File

@ -2,7 +2,7 @@ library project AdaID is
Version := "%VERSION%";
for Library_Name use "adaid";
for Object_Dir use "obj";
for Source_Dirs use ("src");
for Source_Dirs use ("src", "include");
for Library_Dir use "lib";
for Library_Kind use "dynamic";
for Library_ALI_Dir use "ali";

View File

@ -9,10 +9,7 @@ project Test is
package Builder is
for Default_Switches("Ada") use ("-g",
"-Wall",
"-Wextra",
"-gnatQ",
"-I./include");
"-gnatQ");
end Builder;
@ -28,8 +25,7 @@ project Test is
"-g",
"-Wall",
"--pedantic-errors",
"-Wextra",
"-I./include");
"-Wextra");
end Compiler;
package Binder is