Renamed stuff in demos to xcode6

This commit is contained in:
Simon 2015-10-29 11:52:58 +01:00
parent 5fcda128b5
commit 53cb70ec44
5 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@ APPNAME = 'TestProject'
VERSION = '1.0'
def options(opt):
opt.load('xcode')
opt.load('xcode6')
def configure(conf):
@ -14,7 +14,7 @@ def configure(conf):
conf.env.MACOSX_DEPLOYMENT_TARGET = '10.9'
conf.env.SDKROOT = 'macosx10.9'
conf.load('xcode')
conf.load('xcode6')
def build(bld):
@ -33,7 +33,7 @@ def build(bld):
source=bld.path.ant_glob('src/*.cpp|'),
includes=tg.includes,
target='MyApp',
use='MyLib Yolo',
use='MyLib',
uselib='SDL2',
cxxflags='-O3',
framework='Cocoa',
@ -43,7 +43,7 @@ def build(bld):
bld.dylib(
source=tg.source,
includes=tg.includes,
target='MyDynLibYo',
target='MyDynLib',
)
bld.exe(

View File

@ -410,7 +410,7 @@ class PBXProject(XCodeNode):
return None
class xcode(Build.BuildContext):
cmd = 'xcode'
cmd = 'xcode6'
fun = 'build'
file_refs = dict()