12 lines
595 B
Plaintext
12 lines
595 B
Plaintext
# Configures the build to use XCode targeting macOS
|
|
|
|
import subprocess
|
|
|
|
CC = subprocess.check_output(['xcrun', '-f', '--sdk', 'macosx', 'clang']).decode('utf-8').strip()
|
|
CXX = subprocess.check_output(['xcrun', '-f', '--sdk', 'macosx', 'clang++']).decode('utf-8').strip()
|
|
|
|
sdk_path = subprocess.check_output(['xcrun', '--sdk', 'macosx', '--show-sdk-path']).decode('utf-8').strip()
|
|
|
|
CCFLAGS = "-isysroot {} -mmacosx-version-min=10.12 -target darwin16.0.0 -arch x86_64".format(sdk_path)
|
|
LINKFLAGS = "-Wl,-syslibroot,{} -mmacosx-version-min=10.12 -target darwin16.0.0 -arch x86_64".format(sdk_path)
|