Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-01-06 | IOS: Create two targets for old iPhone (iOS <= 6) and new one (iOS >= 7) | Vincent Bénony | |
The "iphone" backend is the support for the old iPhones. The "ios7" backend is for the new iPhones. | |||
2016-01-06 | IOS: Removes an unused local variable | Vincent Bénony | |
2016-01-06 | IOS: Fixes a small memory leak | Vincent Bénony | |
2016-01-06 | IOS: Replaces whitespaces with tab | Vincent Bénony | |
2016-01-06 | IOS: Fixes a crash of the create_project tool when the lib directory is not ↵ | Vincent Bénony | |
found | |||
2016-01-06 | IOS: Replaces spaces with tabs | Vincent Bénony | |
2016-01-06 | IOS: Once again, changes the iOS deployment target | Vincent Bénony | |
2016-01-06 | IOS: Changes the deployment target to iOS 7.0 | Vincent Bénony | |
2016-01-06 | IOS: Properly adds the resource files to the targets | Vincent Bénony | |
2016-01-06 | IOS: Adds an helper function | Vincent Bénony | |
2016-01-06 | IOS : Rename a function | Vincent Bénony | |
2016-01-06 | IOS: Converts spaces to tabs | Vincent Bénony | |
2016-01-06 | IOS: Adds the image asset catalog to the iOS targer | Vincent Bénony | |
2016-01-06 | IOS: Removes "auto", and use an explicit type | Vincent Bénony | |
2016-01-06 | IOS: Typo in comment | Vincent Bénony | |
2016-01-06 | IOS: Fixes various iOS compilation flags, and missing frameworks | Vincent Bénony | |
2016-01-06 | IOS: Keep the MACOSX, and IPHONE macros according to the target | Vincent Bénony | |
2016-01-06 | IOS: Remove the simulator specific target | Vincent Bénony | |
The simulator works with the same target than the iPhone / iPad target. | |||
2016-01-06 | ISO: Removes the ENABLE_IOS macro | Vincent Bénony | |
2016-01-06 | IOS: Adds the POSIX macro to the create_project Xcode project | Vincent Bénony | |
2016-01-06 | IOS: Adds the IPHONE macro to the generated project | Vincent Bénony | |
2016-01-06 | IOS: Create a separate for adding resources | Vincent Bénony | |
2015-12-12 | DEVTOOLS: A few formatting fixes. | Johannes Schickel | |
2015-12-12 | DEVTOOLS: Replace macro by function call. | Johannes Schickel | |
2015-12-12 | DEVTOOLS: Adjust enum constant names to match our conventions. | Johannes Schickel | |
2015-12-12 | DEVTOOLS: Remove 'explicit' keyword from multi parameter constructors. | Johannes Schickel | |
This does not make sense in C++98. For C++11 this only prevents Foo x = {...} initialization, which we can't use anyway. | |||
2015-12-12 | DEVTOOLS: Cleanup code. | Johannes Schickel | |
2015-12-12 | DEVTOOLS: Use default copy constructor. | Johannes Schickel | |
The formerly user supplied copy constructor was not identical to the default generated, but the output of create_project for xcode is unchanged. | |||
2015-12-12 | DEVTOOLS: Run astyle over xcode.[cpp/h]. | Johannes Schickel | |
Manual fix up included. | |||
2015-12-12 | DEVTOOLS: Prefix varibles in structs/classes with '_' in xcode.[h/cpp]. | Johannes Schickel | |
This silences some variables and increases consistency with our code formatting conventions. | |||
2015-10-12 | CREATE_PROJECT: Cleanup and turn off exception handling again | Paul Gilbert | |
2015-09-28 | CREATE_PROJECT: Add support for Visual Studio 2015 | Paul Gilbert | |
2015-07-20 | CREATE_PROJECT: Use NULL instead of nullptr | Filippos Karapetis | |
This allows create_project to be built with the C99 standard, instead of C11 | |||
2015-07-20 | CREATE_PROJECT: Rename XCodeProvider -> XcodeProvider | Filippos Karapetis | |
2015-04-09 | CREATE_PROJECT: Remove forced USE_TREMOR define on OS X. | Einar Johan Trøan Sømåen | |
2015-04-09 | CREATE_PROJECT: Link theora and jpeg in XCode-projects. | Einar Johan Trøan Sømåen | |
2015-04-09 | CREATE_PROJECT: Use SRCROOT-relative include paths. | Einar Johan Trøan Sømåen | |
2015-04-09 | CREATE_PROJECT: Set projectDirPath to the source-path in XCode. | Einar Johan Trøan Sømåen | |
2015-04-09 | CREATE_PROJECT: Don't add -fno-rtti. | Einar Johan Trøan Sømåen | |
2015-04-09 | CREATE_PROJECT: Modify producesObjectFile to take .m and .mm into account. | Einar Johan Trøan Sømåen | |
This should be safe outside XCode, as only OSX/iOS-projects introduce such files to begin with. | |||
2015-04-09 | CREATE_PROJECT: Remove leftover _rootGroups. | Einar Johan Trøan Sømåen | |
2015-04-09 | CREATE_PROJECT: Add SRCROOT and SRCROOT/engines to USER_HEADER_SEARCH_PATHS ↵ | Einar Johan Trøan Sømåen | |
for XCode. | |||
2015-04-09 | CREATE_PROJECT: Link against libpng and libfreetype in XCode-projects. | Einar Johan Trøan Sømåen | |
2015-04-09 | CREATE_PROJECT: Enable RTTI in XCode-projects. | Einar Johan Trøan Sømåen | |
2015-04-09 | CREATE_PROJECT: Add the product files to a group in XCode aswell (makes ↵ | Einar Johan Trøan Sømåen | |
things easier when configuring build-schemes) | |||
2015-04-09 | CREATE_PROJECT: Refactor the Framework and library adding for XCode, and add ↵ | Einar Johan Trøan Sømåen | |
the relevant Frameworks to a group. | |||
2015-04-09 | CREATE_PROJECT: Introduce a subclass of Object to manage group-creation. | Einar Johan Trøan Sømåen | |
This rewrites the way groups are created, so that the root source folder has groups created for any subfolder that is used, which allows for merging in the engines/-subfolder automatically. | |||
2015-04-09 | CREATE_PROJECT: Add macros to disable IOS-project creation for now. | Einar Johan Trøan Sømåen | |
2015-04-09 | CREATE_PROJECT: Revert idea about createOneProjectPerEngine. | Einar Johan Trøan Sømåen | |
2015-04-09 | CREATE_PROJECT: Use a different producesObjectFile-function for Xcode, so ↵ | Einar Johan Trøan Sømåen | |
that we can allow Objective-C(++) and disallow .asm |