aboutsummaryrefslogtreecommitdiff
path: root/devtools/create_project/xcode.cpp
AgeCommit message (Collapse)Author
2016-09-10CLOUD: Move openUrl to OSystemThierry Crozat
2016-09-01CREATE_PROJECT: Fix networking backend file targets in XcodeColin Snover
2016-08-13CREATE_PROJECT: Fix warning flags in Xcode generatorColin Snover
Sign comparison should be on to match other compilers, and multichar warnings should be disabled for all platforms, not just iOS.
2016-08-05CREATE_PROJECT: Fix Xcode generator macOS targetColin Snover
2016-03-24DEVTOOLS: Improve SDL2 support in create_project.Johannes Schickel
This adapts MSBuild and XCode project generators to output project files which can be used to build the SDL backend with SDL2 easily.
2016-03-16OPENGL: Resolve OpenGL functions on run-time.Johannes Schickel
Formerly we relied on static linkage. However, in the presense of modern OpenGL (ES) implementations it is not easily identifable which library to link against. For example, on Linux amd64 with nVidia drivers and SDL2 setup to create a GLES 1.1 context one would need to link against libGL.so. However, traditionally GLES 1.1 required to link against libGLESv1_CM.so. To prevent a huge mess we simply resolve the OpenGL functions on run-time now and stop linking against a static library (in most cases). GLES support needs to be enabled manually on configure time for now. Tizen changes have NOT been tested.
2016-01-11CREATE_TOOL: Use tabs instead of spaces...Vincent Bénony
2016-01-11CREATE_TOOL: Renames static libraries used for iOS targetVincent Bénony
2016-01-07IOS: Renames a macroVincent Bénony
2016-01-06DEVTOOL: Fixes a typo in an unused macroVincent Bénony
2016-01-06DEVTOOL: Fixes a typoVincent Bénony
2016-01-06DEVTOOL: Removes useless macroVincent Bénony
2016-01-06DEVTOOL: FormattingVincent Bénony
2016-01-06DEVTOOL: Adds a macro for the iOS 7 targetVincent Bénony
2016-01-06DEVTOOL: CleanupVincent Bénony
2016-01-06IOS: Merge masterVincent Bénony
2016-01-06IOS: Brings support for FluidSynthVincent Bénony
2016-01-06IOS: Support for libmadVincent Bénony
2016-01-06IOS: Compute MD5 identifiers instead of randomVincent Bénony
To avoid recompiling the wole project each time we use the create_project tool.
2016-01-06IOS: Changes the debug information formatVincent Bénony
Mainly, to speed up the development with the "debug" configuration.
2016-01-06IOS: Cleanup Xcode settingsVincent Bénony
2016-01-06IOS: Fixes small issues about the project nameVincent Bénony
2016-01-06IOS: Cleanup preprocessor macrosVincent Bénony
2016-01-06IOS: Modernize Xcode projectVincent Bénony
2016-01-06IOS: More Xcode path fixedVincent Bénony
2016-01-06IOS: Fixes Xcode group pathsVincent Bénony
The generated project paths were recognized by Xcode, but not third party tools, like AppCode.
2016-01-06IOS: 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-06IOS: Removes an unused local variableVincent Bénony
2016-01-06IOS: Fixes a small memory leakVincent Bénony
2016-01-06IOS: Replaces whitespaces with tabVincent Bénony
2016-01-06IOS: Fixes a crash of the create_project tool when the lib directory is not ↵Vincent Bénony
found
2016-01-06IOS: Replaces spaces with tabsVincent Bénony
2016-01-06IOS: Once again, changes the iOS deployment targetVincent Bénony
2016-01-06IOS: Changes the deployment target to iOS 7.0Vincent Bénony
2016-01-06IOS: Properly adds the resource files to the targetsVincent Bénony
2016-01-06IOS : Rename a functionVincent Bénony
2016-01-06IOS: Converts spaces to tabsVincent Bénony
2016-01-06IOS: Adds the image asset catalog to the iOS targerVincent Bénony
2016-01-06IOS: Removes "auto", and use an explicit typeVincent Bénony
2016-01-06IOS: Typo in commentVincent Bénony
2016-01-06IOS: Fixes various iOS compilation flags, and missing frameworksVincent Bénony
2016-01-06IOS: Keep the MACOSX, and IPHONE macros according to the targetVincent Bénony
2016-01-06IOS: Remove the simulator specific targetVincent Bénony
The simulator works with the same target than the iPhone / iPad target.
2016-01-06ISO: Removes the ENABLE_IOS macroVincent Bénony
2016-01-06IOS: Create a separate for adding resourcesVincent Bénony
2015-12-12DEVTOOLS: Replace macro by function call.Johannes Schickel
2015-12-12DEVTOOLS: Adjust enum constant names to match our conventions.Johannes Schickel
2015-12-12DEVTOOLS: Cleanup code.Johannes Schickel
2015-12-12DEVTOOLS: Run astyle over xcode.[cpp/h].Johannes Schickel
Manual fix up included.
2015-12-12DEVTOOLS: Prefix varibles in structs/classes with '_' in xcode.[h/cpp].Johannes Schickel
This silences some variables and increases consistency with our code formatting conventions.