mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-10-09 16:26:44 +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()
|
||||
minizip:project()
|
||||
salsa20:project()
|
||||
webview:project()
|
||||
zlib:project()
|
||||
|
||||
if _OPTIONS["modman"] then
|
||||
webview:project()
|
||||
end
|
||||
group ""
|
||||
|
||||
-- ========================
|
||||
@@ -173,9 +176,12 @@ group ""
|
||||
-- Tools group: All projects that compile into the final tools
|
||||
group "Tools"
|
||||
Linker:project()
|
||||
ModMan:project()
|
||||
Unlinker:project()
|
||||
ImageConverter:project()
|
||||
|
||||
if _OPTIONS["modman"] then
|
||||
ModMan:project()
|
||||
end
|
||||
group ""
|
||||
|
||||
group "Raw"
|
||||
|
@@ -16,3 +16,7 @@ newoption {
|
||||
trigger = "experimental-material-compilation",
|
||||
description = "Activate experimental material compilation support"
|
||||
}
|
||||
newoption {
|
||||
trigger = "modman",
|
||||
description = "Activate experimental compilation of ModMan (OAT GUI)"
|
||||
}
|
||||
|
Reference in New Issue
Block a user