2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 01:46:15 +01:00
This commit is contained in:
Thomas Nagy 2011-11-20 14:47:27 +01:00
parent d6bb5235a9
commit 1ee780d9aa

View File

@ -10,7 +10,11 @@ out = 'build'
def options(opt):
opt.load('compiler_c')
opt.load('xcode')
try:
# you must include the xcode generator in your waf file if you want to use it
opt.load('xcode')
except ImportError:
pass
def configure(conf):
conf.load('compiler_c')