mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-10-13 01:59:02 +00:00
chore: hide modman behind premake feature flag
This commit is contained in:
10
premake5.lua
10
premake5.lua
@@ -116,8 +116,11 @@ group "ThirdParty"
|
|||||||
minilzo:project()
|
minilzo:project()
|
||||||
minizip:project()
|
minizip:project()
|
||||||
salsa20:project()
|
salsa20:project()
|
||||||
webview:project()
|
|
||||||
zlib:project()
|
zlib:project()
|
||||||
|
|
||||||
|
if _OPTIONS["modman"] then
|
||||||
|
webview:project()
|
||||||
|
end
|
||||||
group ""
|
group ""
|
||||||
|
|
||||||
-- ========================
|
-- ========================
|
||||||
@@ -173,9 +176,12 @@ group ""
|
|||||||
-- Tools group: All projects that compile into the final tools
|
-- Tools group: All projects that compile into the final tools
|
||||||
group "Tools"
|
group "Tools"
|
||||||
Linker:project()
|
Linker:project()
|
||||||
ModMan:project()
|
|
||||||
Unlinker:project()
|
Unlinker:project()
|
||||||
ImageConverter:project()
|
ImageConverter:project()
|
||||||
|
|
||||||
|
if _OPTIONS["modman"] then
|
||||||
|
ModMan:project()
|
||||||
|
end
|
||||||
group ""
|
group ""
|
||||||
|
|
||||||
group "Raw"
|
group "Raw"
|
||||||
|
@@ -16,3 +16,7 @@ newoption {
|
|||||||
trigger = "experimental-material-compilation",
|
trigger = "experimental-material-compilation",
|
||||||
description = "Activate experimental material compilation support"
|
description = "Activate experimental material compilation support"
|
||||||
}
|
}
|
||||||
|
newoption {
|
||||||
|
trigger = "modman",
|
||||||
|
description = "Activate experimental compilation of ModMan (OAT GUI)"
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user