aboutsummaryrefslogtreecommitdiff
path: root/devtools/create_project
AgeCommit message (Collapse)Author
2015-04-09CREATE_PROJECT: Link theora and jpeg in XCode-projects.Einar Johan Trøan Sømåen
2015-04-09CREATE_PROJECT: Use SRCROOT-relative include paths.Einar Johan Trøan Sømåen
2015-04-09CREATE_PROJECT: Set projectDirPath to the source-path in XCode.Einar Johan Trøan Sømåen
2015-04-09CREATE_PROJECT: Don't add -fno-rtti.Einar Johan Trøan Sømåen
2015-04-09CREATE_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-09CREATE_PROJECT: Remove leftover _rootGroups.Einar Johan Trøan Sømåen
2015-04-09CREATE_PROJECT: Add SRCROOT and SRCROOT/engines to USER_HEADER_SEARCH_PATHS ↵Einar Johan Trøan Sømåen
for XCode.
2015-04-09CREATE_PROJECT: Link against libpng and libfreetype in XCode-projects.Einar Johan Trøan Sømåen
2015-04-09CREATE_PROJECT: Enable RTTI in XCode-projects.Einar Johan Trøan Sømåen
2015-04-09CREATE_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-09CREATE_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-09CREATE_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-09CREATE_PROJECT: Add macros to disable IOS-project creation for now.Einar Johan Trøan Sømåen
2015-04-09CREATE_PROJECT: Revert idea about createOneProjectPerEngine.Einar Johan Trøan Sømåen
2015-04-09CREATE_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
2015-04-09CREATE_PROJECT: Define MACOSX and POSIX in XCode-projects for now (ignoring ↵Einar Johan Trøan Sømåen
iOS for the moment)
2015-04-09CREATE_PROJECT: Define a group for the Frameworks, and add it to the ↵Einar Johan Trøan Sømåen
mainGroup, so that the buildPhase can figure things out.
2015-04-09CREATE_PROJECT: Explicitly add /opt/include/freetype2 to header paths.Einar Johan Trøan Sømåen
2015-04-09CREATE_PROJECT: Enable XCode-project creation.Einar Johan Trøan Sømåen
2015-04-09CREATE_PROJECT: Implement setupSourcesBuildPhase for XCode, basing it on ↵Einar Johan Trøan Sømåen
setupResourcesBuildPhase.
2015-04-09CREATE_PROJECT: Disable the WIN32-define when creating an XCode-project.Einar Johan Trøan Sømåen
2015-04-09CREATE_PROJECT: Make sure that children of PBXGroups are always listed as a ↵Einar Johan Trøan Sømåen
list with "," after every item, even when there's only one child. This modifies the combination of SettingsAsList and SettingsSingleItem so that "," is used after the item, instead of ";", but only when they are used together.
2015-04-09CREATE_PROJECT: Modify XCodeProvider to add the various folders as groups, ↵Einar Johan Trøan Sømåen
instead of file-references, hardcoding the root as the group "CustomTemplate" This also modifies the hashes, so that subfolders get unique hashes, even if they have the same name as some other folder in the tree (i.e. there are multiple folders named "sdl" in the various subfolders of backends/platforms).
2015-04-09CREATE_PROJECT: Make ProjectProvider able to work properly with subclasses ↵Einar Johan Trøan Sømåen
that want to create one single project.
2015-04-09CREATE_PROJECT: Use whatever SDK is available on OS X.Einar Johan Trøan Sømåen
2015-04-09CREATE_PROJECT: Fix Info.plist path.Einar Johan Trøan Sømåen
2015-04-09CREATE_PROJECT: Quote lastKnownFileType, name and path to avoid breakage on ↵Einar Johan Trøan Sømåen
c++11-compat.h
2015-04-09CREATE_PROJECT: Escape \" in "<group>" for PBXFileReferences during ↵Einar Johan Trøan Sømåen
writeFileListToProject This has to be applied explicitly, as modifying ADD_FILE_REFERENCE to use SettingsQuoteVariable would be wrong (i.e. SDKROOT should not become "SDKROOT").
2015-04-09CREATE_PROJECT: Make PBXGroups use PBXFileReference-hashes instead of ↵Einar Johan Trøan Sømåen
PBXBuildFile-hashes.
2015-03-06DEVTOOLS: Add support for linking with SDL 2.0 in create_projectFilippos Karapetis
This is handled with the new command-line option, --sdl2
2014-07-17CREATE_PROJECT/MSVC: allow include SDL includes from SDL subdirPawel Kolodziejski
2014-06-28Merge pull request #461 from digitall/vkeybdFixDavid Turner
Add trigger for Virtual Keyboard on long press of Middle Mouse Button
2014-06-25DEVTOOLS: Add "small" vkeybd pack to create_project postbuild script.D G Turner
2014-06-22DEVTOOLS: List MSVC 2013 support in create_project's help output.Johannes Schickel
2014-06-21ALL: Remove support for MSVC8 and olderJoel Teichroeb
MSVC8 gives various compile error relating to templates that were changed back in 2008, leading me to belive that no one is using it, and that there is not point adding work arounds for a 9 year old compiler no one uses.
2014-02-28IMAGE: Move all ImageDecoders to image/Matthew Hoops
2014-01-23Merge pull request #409 from lordhoto/rttiJohannes Schickel
Enable RTTI and clean up the code by exploiting the availability of dynamic_cast.
2013-12-10CREATE_PROJECT: Add Graphics::Surface to natvis and register for Image WatchLittleboy
2013-12-10CREATE_PROJECT: Add batch file to install natvis fileLittleboy
2013-12-10CREATE_PROJECT: Fix issues breaking compilation with LLVMLittleboy
- Current folder include - Build folder include (needs to be hardcoded) - NASM compilation directives
2013-12-10CREATE_PROJECT: Ignore unused cl arguments when compiling with LLVMLittleboy
2013-12-07DEVTOOLS: Add debug visualization files for Visual Studio 2012+Роман Донченко
2013-11-27DEVTOOLS: Include 'iterator' for std::back_inserter.Johannes Schickel
2013-11-25DEVTOOLS: Add project file directory to include path in generated project files.Johannes Schickel
2013-11-24DEVTOOLS: Make create_project sort SCUMM as first engine.Johannes Schickel
This makes create_project output consistent with configure output again.
2013-11-24DEVTOOLS: Adapt create_project to create engines/ dir if necessaryJohannes Schickel
2013-11-24DEVTOOLS: Factor out function to create directories in create_project.Johannes Schickel
2013-11-24DEVTOOLS: Adapt create_project for new configure.engine files.Johannes Schickel
I could not try any generated project files since I do not have access to the IDEs.
2013-10-23DEVTOOLS: Enable RTTI in create_project generated project files.Johannes Schickel
2013-09-27DEVTOOLS: Make Coverity happy.Eugene Sandulenko
This is mainly due to unhandled clang __has_featrure() buit-in. I do not like this hack, but Coverity proved to be a very good tool for us.