summaryrefslogtreecommitdiffstats
path: root/tools/ios.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/ios.py')
-rw-r--r--tools/ios.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/ios.py b/tools/ios.py
index 9d37214..7571868 100644
--- a/tools/ios.py
+++ b/tools/ios.py
@@ -1,6 +1,7 @@
import os
import sys
import subprocess
+import common_compiler_flags
from SCons.Variables import *
if sys.version_info < (3,):
@@ -104,3 +105,5 @@ def generate(env):
env.Append(LINKFLAGS=["-isysroot", env["IOS_SDK_PATH"], "-F" + env["IOS_SDK_PATH"]])
env.Append(CPPDEFINES=["IOS_ENABLED", "UNIX_ENABLED"])
+
+ common_compiler_flags.generate(env)