Compare commits

...

4 Commits
0.5.4 ... 0.5.7

Author SHA1 Message Date
fcdcbca02a [DEV] update to the 8.3 iOs framework 2015-05-11 23:33:28 +02:00
d521b496da [DEV] create new version 2015-05-11 23:56:32 +02:00
8aa3de57a6 [DEBUG] correct force and color interface 2015-05-11 23:54:02 +02:00
78322882ff Update README.rst 2015-05-11 09:01:47 +02:00
4 changed files with 11 additions and 6 deletions

View File

@@ -35,6 +35,10 @@ Just run::
pip install lutin
On mac-os you may install pip before:
sudo easy_install pip
License (APACHE v2.0)
---------------------

View File

@@ -15,6 +15,7 @@ import lutin.arg as arguments
import lutin.host as host
import lutin.module as module
import lutin.target as target
import lutin.env as env
import lutin.multiprocess as multiprocess
myArgs = arguments.LutinArg()
@@ -106,15 +107,15 @@ def parseGenericArg(argument, active):
return True
elif argument.get_option_nName() == "force":
if active==True:
lutinEnv.set_force_mode(True)
env.set_force_mode(True)
return True
elif argument.get_option_nName() == "pretty":
if active==True:
lutinEnv.set_print_pretty_mode(True)
env.set_print_pretty_mode(True)
return True
elif argument.get_option_nName() == "force-strip":
if active==True:
lutinEnv.set_force_strip_mode(True)
env.set_force_strip_mode(True)
return True
return False

View File

@@ -54,11 +54,11 @@ class Target(target.Target):
self.suffix_binary=''
self.suffix_package=''
if self.sumulator == True:
self.sysroot = "-isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator8.1.sdk"
self.sysroot = "-isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator8.3.sdk"
self.global_flags_ld.append("-mios-simulator-version-min=8.0")
self.global_flags_cc.append("-mios-simulator-version-min=8.0")
else:
self.sysroot = "-isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.1.sdk"
self.sysroot = "-isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk"
self.global_flags_ld.append("-miphoneos-version-min=8.0")
self.global_flags_cc.append("-miphoneos-version-min=8.0")

View File

@@ -7,7 +7,7 @@ def readme():
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
setup(name='lutin',
version='0.5.4',
version='0.5.7',
description='Lutin generic builder',
long_description=readme(),
url='http://github.com/HeeroYui/lutin',