Files
lace/1-base/lace/library/lace.gpr
2022-11-12 13:25:37 +11:00

39 lines
1.1 KiB
Plaintext

with
-- "florist",
"lace_shared",
"ashell";
--library
project Lace
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";
for Source_Dirs use ("../source",
"../source/containers",
"../source/environ",
"../source/dice",
"../source/events",
"../source/events/concrete",
"../source/events/interface",
"../source/events/mixin",
"../source/events/mixin/" & external ("restrictions", "xgc"),
"../source/events/utility",
"../source/strings",
"../source/text");
package Builder renames Lace_shared.Builder;
package Compiler renames Lace_shared.Compiler;
package Binder renames Lace_shared.Binder;
end Lace;