Fixed compile flags for osx
This commit is contained in:
parent
978590825d
commit
a5f28c513a
1 changed files with 3 additions and 3 deletions
|
|
@ -50,13 +50,13 @@ if env['platform'] == "osx":
|
||||||
env['target_path'] += 'osx/'
|
env['target_path'] += 'osx/'
|
||||||
cpp_library += '.osx'
|
cpp_library += '.osx'
|
||||||
env.Append(CPPDEFINES=['__MACOSX_CORE__'])
|
env.Append(CPPDEFINES=['__MACOSX_CORE__'])
|
||||||
env.Append(CXXFLAGS=['-std=c++17', '-framework CoreAudio', '-framework CoreFoundation'])
|
env.Append(CXXFLAGS=['-std=c++17'])
|
||||||
|
env.Append(LINKFLAGS=['-arch', 'x86_64','-framework',
|
||||||
|
'CoreAudio', '-framework', 'CoreFoundation'])
|
||||||
if env['target'] in ('debug', 'd'):
|
if env['target'] in ('debug', 'd'):
|
||||||
env.Append(CCFLAGS=['-g', '-O2', '-arch', 'x86_64'])
|
env.Append(CCFLAGS=['-g', '-O2', '-arch', 'x86_64'])
|
||||||
env.Append(LINKFLAGS=['-arch', 'x86_64'])
|
|
||||||
else:
|
else:
|
||||||
env.Append(CCFLAGS=['-g', '-O3', '-arch', 'x86_64'])
|
env.Append(CCFLAGS=['-g', '-O3', '-arch', 'x86_64'])
|
||||||
env.Append(LINKFLAGS=['-arch', 'x86_64'])
|
|
||||||
|
|
||||||
elif env['platform'] in ('x11', 'linux'):
|
elif env['platform'] in ('x11', 'linux'):
|
||||||
env['target_path'] += 'x11/'
|
env['target_path'] += 'x11/'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue