3 Star 3 Fork 1

Gitee 极速下载/luaplus51-all

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/jjensen/luaplus51-all
克隆/下载
Jamfile.jam 2.08 KB
一键复制 编辑 原始数据 按行查看 历史
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. ;
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/mirrors/luaplus51-all.git
git@gitee.com:mirrors/luaplus51-all.git
mirrors
luaplus51-all
luaplus51-all
master

搜索帮助