-
Notifications
You must be signed in to change notification settings - Fork 89
/
Jamfile.jam
82 lines (71 loc) · 2.08 KB
/
Jamfile.jam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
SubDir LUAPLUS ;
#C.Defines * : LUA_WIDESTRING=1 LUA_WIDESTRING_FILE=1 ;
Workspace LuaPlus :
lua
luac
$(LUA_VERSION)-static
;
SubIncludeRelative Src LuaPlus : LuaPlusSharedLib ;
SubIncludeRelative Src LuaPlus : LuaPlusStaticLib ;
SubIncludeRelative Src LuaPlus : Lua ;
SubIncludeRelative Src LuaPlus : LuaC ;
if $(OS) = NT
{
SubInclude LUAPLUS Src ManagedLuaPlus : ManagedLuaPlus ;
# SubInclude LUAPLUS Src ManagedLuaPlus : LuaPlusClrPure ;
if $(LUA_VERSION) in lua51 lua51-luaplus {
SubInclude LUAPLUS Src Lua51Proxy : Lua51Proxy ;
}
SubInclude LUAPLUS Tools LuaPlusDebuggerAddin ;
Workspace LuaPlus :
# LuaPlusClrPure
LuaPlusDebuggerAddin
LuaPlusDebuggerControls
ManagedLuaPlus
;
}
{
local modules ;
local modulefiles ;
local dir ;
for dir in [ Glob $(LUAPLUS)/Src/Modules : * : 0 ] {
local module = [ Match (.+)/ : $(dir) ] ;
if $(module) {
local file = [ Glob $(LUAPLUS)/Src/Modules/$(module) : $(module).jam : 0 ] ;
if $(file) {
modules += $(module:L) ;
modulefiles += $(module)=$(module).jam ;
} else {
file = [ Glob $(LUAPLUS)/Src/Modules/$(module) : Jamfile.jam : 0 ] ;
if $(file) {
modules += $(module:L) ;
modulefiles += $(module)=Jamfile.jam ;
}
}
}
}
local file ;
for file in [ Glob $(LUAPLUS)/Src/modules.jambuild : *.jam : 0 ] {
local isDownload = [ Match \!(download)\.jam : $(file) ] ;
if $(isDownload) = download {
local module = [ Match (.+)\!download\.jam : $(file) ] ;
SUBDIR = $(LUAPLUS)/Src/Modules/$(module) ;
include $(LUAPLUS)/Src/modules.jambuild/$(file) ;
continue ;
}
local module = [ Match (.+)\.jam : $(file) ] ;
if ! ( $(module) in $(modules) ) {
modules += $(module:L) ;
modulefiles += $(module)=../../modules.jambuild/$(module).jam ;
}
}
local moduleinfo ;
for moduleinfo in $(modulefiles) {
local parts = [ Split $(moduleinfo) : \= ] ;
if [ Glob $(LUAPLUS)/Src/Modules : $(parts[1])/ : 1 ] {
SubInclude LUAPLUS Src Modules $(parts[1]) : $(parts[2]) ;
} else {
#Echo * Not building $(parts[1]), because its source files do not exist. ;
}
}
}