blob: c933aab2674d8c1916b2d86421775f8328a3b167 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
configuration {}
configuration { "Debug" }
targetdir ( "../../bin/debug/" .. _ACTION .. "-" .. _OPTIONS["target"] .. "/all" )
configuration { "Release" }
targetdir ( "../../bin/release/" .. _ACTION .. "-" .. _OPTIONS["target"] .. "/all" )
configuration "Debug"
defines { "DEBUG" }
defines { "MPT_BUILD_DEBUG" }
flags { "Symbols" }
configuration "Release"
defines { "NDEBUG" }
flags { "OptimizeSpeed" }
configuration {}
defines { "MPT_BUILD_XCODE" }
premake.xcode.toolset = _OPTIONS["target"]
configuration {}
|