genie.lua 803 B

1234567891011121314151617181920212223242526272829303132333435
  1. newoption {
  2. trigger = "group",
  3. value = "PROJECTS",
  4. description = "OpenMPT project group",
  5. allowed = {
  6. { "libopenmpt", "libopenmpt" },
  7. }
  8. }
  9. newoption {
  10. trigger = "target",
  11. value = "PROJECTS",
  12. description = "windows target platform",
  13. allowed = {
  14. { "macosx" , "macosx" },
  15. { "iphoneos", "iphoneos" },
  16. }
  17. }
  18. mpt_projectpathname = _ACTION .. "-" .. _OPTIONS["target"]
  19. mpt_bindirsuffix = _OPTIONS["target"]
  20. solution "libopenmpt"
  21. location ( "../../build/" .. mpt_projectpathname )
  22. configurations { "Debug", "Release" }
  23. dofile "../../build/xcode-genie/mpt-libopenmpt.lua"
  24. dofile "../../build/xcode-genie/ext-mpg123.lua"
  25. dofile "../../build/xcode-genie/ext-ogg.lua"
  26. dofile "../../build/xcode-genie/ext-vorbis.lua"
  27. -- dofile "../../build/xcode-genie/ext-zlib.lua"