diff options
Diffstat (limited to 'etc/scons/xcode_watchos_sim.vars')
-rw-r--r-- | etc/scons/xcode_watchos_sim.vars | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/etc/scons/xcode_watchos_sim.vars b/etc/scons/xcode_watchos_sim.vars deleted file mode 100644 index 4cd2b12982c..00000000000 --- a/etc/scons/xcode_watchos_sim.vars +++ /dev/null @@ -1,14 +0,0 @@ -# Configures the build to use XCode targeting iOS simulator - -import subprocess - -CC = subprocess.check_output(['xcrun', '-f', '--sdk', 'watchsimulator', 'clang']).strip() -CXX = subprocess.check_output(['xcrun', '-f', '--sdk', 'watchsimulator', 'clang++']).strip() - -sdk_path = subprocess.check_output(['xcrun', '--sdk', 'watchsimulator', '--show-sdk-path']).strip() - -CCFLAGS = "-isysroot {} -mwatchos-version-min=4.2 -arch i386 -fembed-bitcode -fapplication-extension".format(sdk_path) -LINKFLAGS = "-Wl,-syslibroot,{} -mwatchos-version-min=4.2 -arch i386 -fembed-bitcode -fapplication-extension".format(sdk_path) - -TARGET_OS = "watchOS-sim" -TARGET_ARCH = "i386" |