aboutsummaryrefslogtreecommitdiff
path: root/devtools/create_project/create_project.cpp
AgeCommit message (Collapse)Author
2019-07-02JANITORIAL: Remove outdated references to SourceForge.netCameron Cawley
2019-07-02CREATE_PROJECT: Use stricter checks for Win32 dependenciesSupSuper
Instead of checking the project type, check the define. winmm and winsparkle are only required on Windows.
2019-07-02CREATE_PROJECT: Add new libcurl dependenciesSupSuper
2019-06-19CREATE_PROJECT: Use name-based UUIDs for MSVC projectsSupSuper
This keeps the project UUIDs consistent between regenerations, avoiding excessive workspace reloads.
2019-05-05BUILD: Add the licence file for the Source Code Pro fontBastien Bouclet
2019-04-22CREATE_PROJECT: Add Text console debugger featuresluicebox
Add feature flag to create_project to set USE_TEXT_CONSOLE_FOR_DEBUGGER with --enable-text-console like configure script
2019-04-20CREATE_PROJECT: Auto-detect Visual Studio version if not specifiedSupSuper
This removes the need for separate scripts for every version
2019-04-20CREATE_PROJECT: Add Visual Studio 2019SupSuper
2019-04-20CREATE_PROJECT: Refactor Visual Studio version differencesSupSuper
Moved most generation differences to a MSVCVersion class, makes it easier to support new versions without tracking down if-checks everywhere.
2018-12-23MSVC: Update post-build installer for Inno SetupSupSuper
2018-12-16BACKENDS: Add base support for system dialogsSupSuper
2018-11-27CREATE_PROJECT: Support building with Tremor instead of VorbisCameron Cawley
2018-05-24JANITORIAL: Fix trailing whitespaceAdrian Frühwirth
2017-12-25TOOLS: Add cryo and titanic tools in create_projectStrangerke
2017-11-17CREATE_PROJECT: Fix compilation failure in C++11 modeColin Snover
Getting the address of an rvalue is invalid, and not necessary here. Once C++11 can be used always, this utility function can just be replaced with std::to_string.
2017-06-24CREATE_PROJECT: Add fix for nested ifsTobia Tesan
This adds a quick fix so that any if blocks nested inside a if block with an unmet condition are handled with push(false) even if their condition is satisfied. For example, without this modification, upon running create_project.exe --msvc --disable-cloud --enable-libcurl the block inside ifdef USE_CLOUD ifdef USE_LIBCURL ... endif endif in backends/module.mk would get evaluated since it was inside USE_LIBCURL (=1), leading to unpredictable results.
2017-03-08CREATE_PROJECT: Add support for Visual Studio 2017Peter Kohaut
2017-02-06CREATE_PROJECT: Disable engines for which required features are not availableThierry Crozat
2017-02-06CREATE_PROJECT: Add highres featureThierry Crozat
2016-12-17CREATE_PROJECT: Fix Visual Studio linking problems after Munt mergePaul Gilbert
2016-10-20CREATE_PROJECT: Fix MSVC project creation with curl or SDL_Net enabledPaul Gilbert
2016-08-24CLOUD: Add USE_CLOUD featureAlexander Tkachev
Adds USE_CLOUD in both configure and create_project.
2016-08-22CREATE_PROJECT: Switch SDL backend to SDL2 by defaultFilippos Karapetis
This adapts create_project with the changes in de04a68c06
2016-08-12CREATE_PROJECT: Add warning C4373 to ignore list for SCI enginePaul Gilbert
2016-07-07DEVTOOLS: Fix create_project build with MinGW64Bastien Bouclet
2016-07-07DEVTOOLS: Add a CMake project generator to create_projectBastien Bouclet
Also-By: Joel Teichroeb <joel@teichroeb.net> Also-By: Einar Johan Trøan Sømåen <einarjohants@gmail.com>
2016-05-22UPDATES: Add support for WinSparkleFilippos Karapetis
2016-05-22CREATE_PROJECT: Whitespace fixesFilippos Karapetis
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-03-09DEVTOOLS: Use libpng16.lib for libpng for MSVC.Johannes Schickel
Modern libpng releases use this library name as output for their MSVC project files.
2016-01-06IOS: Brings support for FluidSynthVincent Bénony
2016-01-06IOS: Adds an helper functionVincent Bénony
2016-01-06IOS: Adds the IPHONE macro to the generated projectVincent Bénony
2016-01-06IOS: Create a separate for adding resourcesVincent Bénony
2015-10-12CREATE_PROJECT: Cleanup and turn off exception handling againPaul Gilbert
2015-09-28CREATE_PROJECT: Add support for Visual Studio 2015Paul Gilbert
2015-07-20CREATE_PROJECT: Rename XCodeProvider -> XcodeProviderFilippos Karapetis
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: Revert idea about createOneProjectPerEngine.Einar Johan Trøan Sømåen
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: Enable XCode-project creation.Einar Johan Trøan Sømåen
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 ProjectProvider able to work properly with subclasses ↵Einar Johan Trøan Sømåen
that want to create one single project.
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-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
2013-11-27DEVTOOLS: Include 'iterator' for std::back_inserter.Johannes Schickel