aboutsummaryrefslogtreecommitdiff
path: root/Src/external_dependencies/openmpt-trunk/build/xcode-genie/genie.lua
blob: 35fc922373b4cfb70f0a5b866dca6d152e22cc80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

newoption {
 trigger     = "group",
 value       = "PROJECTS",
 description = "OpenMPT project group",
 allowed = {
  { "libopenmpt", "libopenmpt" },
 }
}


newoption {
 trigger     = "target",
 value       = "PROJECTS",
 description = "windows target platform",
 allowed = {
  { "macosx"  , "macosx"   },
  { "iphoneos", "iphoneos" },
 }
}


mpt_projectpathname = _ACTION .. "-" .. _OPTIONS["target"]
mpt_bindirsuffix = _OPTIONS["target"]

solution "libopenmpt"
 location ( "../../build/" .. mpt_projectpathname )
 configurations { "Debug", "Release" }

 dofile "../../build/xcode-genie/mpt-libopenmpt.lua"
 dofile "../../build/xcode-genie/ext-mpg123.lua"
 dofile "../../build/xcode-genie/ext-ogg.lua"
 dofile "../../build/xcode-genie/ext-vorbis.lua"
-- dofile "../../build/xcode-genie/ext-zlib.lua"