lace: Separate the environ packages from core lace into their own gnat project file.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
with
|
||||
-- "florist",
|
||||
"lace_shared",
|
||||
"ashell";
|
||||
"lace_shared";
|
||||
-- "ashell";
|
||||
|
||||
|
||||
--library
|
||||
@@ -20,7 +20,7 @@ is
|
||||
|
||||
for Source_Dirs use ("../source",
|
||||
"../source/containers",
|
||||
"../source/environ",
|
||||
-- "../source/environ",
|
||||
"../source/dice",
|
||||
"../source/events",
|
||||
"../source/events/concrete",
|
||||
|
||||
26
1-base/lace/library/lace_environ.gpr
Normal file
26
1-base/lace/library/lace_environ.gpr
Normal file
@@ -0,0 +1,26 @@
|
||||
with
|
||||
"lace_shared",
|
||||
"ashell";
|
||||
|
||||
|
||||
--library
|
||||
project lace_Environ
|
||||
is
|
||||
type Restrictions is ("xgc", "ravenscar");
|
||||
the_Restrictions : Restrictions := external ("restrictions", "xgc");
|
||||
|
||||
for Create_Missing_Dirs use "True";
|
||||
|
||||
for Object_Dir use "build";
|
||||
for Exec_Dir use ".";
|
||||
for Library_Dir use "lib";
|
||||
for Library_Ali_Dir use "objects";
|
||||
-- for Library_Name use "lace_environ";
|
||||
|
||||
for Source_Dirs use ("../source/environ");
|
||||
|
||||
package Builder renames Lace_shared.Builder;
|
||||
package Compiler renames Lace_shared.Compiler;
|
||||
package Binder renames Lace_shared.Binder;
|
||||
|
||||
end lace_Environ;
|
||||
Reference in New Issue
Block a user