mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 09:57:15 +01:00
Renamed stuff in demos to xcode6
This commit is contained in:
parent
5fcda128b5
commit
53cb70ec44
@ -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(
|
@ -410,7 +410,7 @@ class PBXProject(XCodeNode):
|
||||
return None
|
||||
|
||||
class xcode(Build.BuildContext):
|
||||
cmd = 'xcode'
|
||||
cmd = 'xcode6'
|
||||
fun = 'build'
|
||||
|
||||
file_refs = dict()
|
||||
|
Loading…
Reference in New Issue
Block a user