1
0

genie-defaults.lua 540 B

12345678910111213141516171819202122
  1. configuration {}
  2. configuration { "Debug" }
  3. targetdir ( "../../bin/debug/" .. _ACTION .. "-" .. _OPTIONS["target"] .. "/all" )
  4. configuration { "Release" }
  5. targetdir ( "../../bin/release/" .. _ACTION .. "-" .. _OPTIONS["target"] .. "/all" )
  6. configuration "Debug"
  7. defines { "DEBUG" }
  8. defines { "MPT_BUILD_DEBUG" }
  9. flags { "Symbols" }
  10. configuration "Release"
  11. defines { "NDEBUG" }
  12. flags { "OptimizeSpeed" }
  13. configuration {}
  14. defines { "MPT_BUILD_XCODE" }
  15. premake.xcode.toolset = _OPTIONS["target"]
  16. configuration {}