summaryrefslogtreecommitdiffstats
path: root/platform/isim/detect.py
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2014-02-09 22:10:30 -0300
committerJuan Linietsky <reduzio@gmail.com>2014-02-09 22:10:30 -0300
commit0b806ee0fc9097fa7bda7ac0109191c9c5e0a1ac (patch)
tree276c4d099e178eb67fbd14f61d77b05e3808e9e3 /platform/isim/detect.py
parent0e49da1687bc8192ed210947da52c9e5c5f301bb (diff)
downloadredot-engine-0b806ee0fc9097fa7bda7ac0109191c9c5e0a1ac.tar.gz
GODOT IS OPEN SOURCE
Diffstat (limited to 'platform/isim/detect.py')
-rw-r--r--platform/isim/detect.py98
1 files changed, 98 insertions, 0 deletions
diff --git a/platform/isim/detect.py b/platform/isim/detect.py
new file mode 100644
index 0000000000..8deabbf311
--- /dev/null
+++ b/platform/isim/detect.py
@@ -0,0 +1,98 @@
+import os
+import sys
+
+
+def is_active():
+ return False
+
+def get_name():
+ return "iSIM"
+
+
+def can_build():
+
+ import sys
+ if sys.platform == 'darwin':
+ return True
+
+ return False
+
+def get_opts():
+
+ return [
+ ('ISIMPLATFORM', 'name of the iphone platform', 'iPhoneSimulator'),
+ ('ISIMPATH', 'the path to iphone toolchain', '/Developer/Platforms/${ISIMPLATFORM}.platform'),
+ ('ISIMSDK', 'path to the iphone SDK', '$ISIMPATH/Developer/SDKs/${ISIMPLATFORM}4.3.sdk'),
+ ]
+
+def get_flags():
+
+ return [
+ ('lua', 'no'),
+ ('tools', 'yes'),
+ ('nedmalloc', 'no'),
+ ]
+
+
+
+def configure(env):
+
+ env.Append(CPPPATH=['#platform/iphone'])
+
+ env['OBJSUFFIX'] = ".isim.o"
+ env['LIBSUFFIX'] = ".isim.a"
+ env['PROGSUFFIX'] = ".isim"
+
+ env['ENV']['PATH'] = env['ISIMPATH']+"/Developer/usr/bin/:"+env['ENV']['PATH']
+
+ env['CC'] = '$ISIMPATH/Developer/usr/bin/gcc'
+ env['CXX'] = '$ISIMPATH/Developer/usr/bin/g++'
+ env['AR'] = 'ar'
+
+ import string
+ env['CCFLAGS'] = string.split('-arch i386 -fobjc-abi-version=2 -fobjc-legacy-dispatch -fmessage-length=0 -fpascal-strings -fasm-blocks -Wall -D__IPHONE_OS_VERSION_MIN_REQUIRED=40100 -isysroot $ISIMSDK -mmacosx-version-min=10.6 -DCUSTOM_MATRIX_TRANSFORM_H=\\\"build/iphone/matrix4_iphone.h\\\" -DCUSTOM_VECTOR3_TRANSFORM_H=\\\"build/iphone/vector3_iphone.h\\\"')
+
+ env.Append(LINKFLAGS=['-arch', 'i386',
+ #'-miphoneos-version-min=2.2.1',
+ '-isysroot', '$ISIMSDK',
+ '-mmacosx-version-min=10.6',
+ '-Xlinker',
+ '-objc_abi_version',
+ '-Xlinker', '2',
+ '-framework', 'Foundation',
+ '-framework', 'UIKit',
+ '-framework', 'IOKit',
+ '-framework', 'CoreGraphics',
+ '-framework', 'OpenGLES',
+ '-framework', 'QuartzCore',
+ '-framework', 'AudioToolbox',
+ '-F$ISIMSDK',
+ ])
+
+ env.Append(CPPPATH = ['$ISIMSDK/System/Library/Frameworks/OpenGLES.framework/Headers'])
+
+ if (env["target"]=="release"):
+
+ env.Append(CCFLAGS=['-O3', '-ffast-math'])
+ env.Append(LINKFLAGS=['-O3', '-ffast-math'])
+ env['OBJSUFFIX'] = "_opt"+env['OBJSUFFIX']
+ env['LIBSUFFIX'] = "_opt"+env['LIBSUFFIX']
+
+ elif (env["target"]=="debug"):
+
+ env.Append(CCFLAGS=['-DDEBUG', '-D_DEBUG', '-gdwarf-2', '-Wall', '-O0', '-DDEBUG_ENABLED'])
+ env.Append(CPPFLAGS=['-DDEBUG_MEMORY_ALLOC'])
+
+ elif (env["target"]=="profile"):
+
+ env.Append(CCFLAGS=['-g','-pg'])
+ env.Append(LINKFLAGS=['-pg'])
+
+
+ env['ENV']['MACOSX_DEPLOYMENT_TARGET'] = '10.6'
+ env['ENV']['CODESIGN_ALLOCATE'] = '/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate'
+ env.Append(CPPFLAGS=['-DIPHONE_ENABLED', '-DUNIX_ENABLED', '-DGLES2_ENABLED', '-fno-exceptions'])
+
+ if env['lua'] == "yes":
+ env.Append(CCFLAGS=['-DLUA_USE_FLOAT'])
+