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