[Vm-dev] VM Maker: CMakeVMMaker-EstebanLorenzano.199.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Mar 20 15:32:31 UTC 2013


Esteban Lorenzano uploaded a new version of CMakeVMMaker to project VM Maker:
http://source.squeak.org/VMMaker/CMakeVMMaker-EstebanLorenzano.199.mcz

==================== Summary ====================

Name: CMakeVMMaker-EstebanLorenzano.199
Author: EstebanLorenzano
Time: 20 March 2013, 4:32:13.588 pm
UUID: 7a85c97e-de43-44ff-92d7-05043f61eb4d
Ancestors: CMakeVMMaker-EstebanLorenzano.198

- fix on iPhone building

=============== Diff against CMakeVMMaker-EstebanLorenzano.198 ===============

Item was changed:
  ----- Method: StackIPhoneConfig>>setGlobalOptions: (in category 'settings') -----
  setGlobalOptions: maker
  	"set any CMake global options, before declaring a project in cmake file"
  	
+ "	maker 
- 	maker 
  		set: 'CMAKE_C_COMPILER' 
  		to: ('/Applications/Xcode.app/Contents/Developer/Platforms/{target}.platform/Developer/usr/bin/gcc'
  			nameFormat: {'target' -> self targetDevice} asDictionary).
  	maker 
  		set: 'CMAKE_CXX_COMPILER' 
  		to: ('/Applications/Xcode.app/Contents/Developer/Platforms/{target}.platform/Developer/usr/bin/g++'
  			nameFormat: {'target' -> self targetDevice } asDictionary).	
  	self architecture ifNotNil: [
+ 		maker set: 'CMAKE_OSX_ARCHITECTURES' to: self architecture ]."
- 		maker set: 'CMAKE_OSX_ARCHITECTURES' to: self architecture ].
  	!

Item was changed:
  ----- Method: StackIPhoneConfig>>setGlobalOptionsAfterDetermineSystem: (in category 'utils') -----
  setGlobalOptionsAfterDetermineSystem: maker
+ 	self setGlobalOptions: maker.	
  	maker 
  		set: 'CMAKE_OSX_SYSROOT' 
  		to: ('/Applications/Xcode.app/Contents/Developer/Platforms/{target}.platform/Developer/SDKs/{target}{sdkVersion}.sdk'
  			nameFormat: { 'target'->self targetDevice. 'sdkVersion'->self sdkVersion } asDictionary)!



More information about the Vm-dev mailing list