Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-12-16 | CREATE_PROJECT: Only link to sapi on Windows | SupSuper | |
2019-10-14 | CREATE_PROJECT: Enable TTS on msvc by default | Jaromir Wysoglad | |
2019-09-01 | TTS: Remove USE_PLATFORM_TTS defines | Jaromir Wysoglad | |
Use defined(USE_TTS) && defined(PLATFORM) instead | |||
2019-09-01 | TTS: Add TTS support when compiling with msvc. | Jaromir Wysoglad | |
2019-08-13 | COMMON: Move Lua into Common and make it into... | Nipun Garg | |
an engine feature | |||
2019-07-02 | JANITORIAL: Remove outdated references to SourceForge.net | Cameron Cawley | |
2019-07-02 | CREATE_PROJECT: Use stricter checks for Win32 dependencies | SupSuper | |
Instead of checking the project type, check the define. winmm and winsparkle are only required on Windows. | |||
2019-07-02 | CREATE_PROJECT: Add new libcurl dependencies | SupSuper | |
2019-06-19 | CREATE_PROJECT: Use name-based UUIDs for MSVC projects | SupSuper | |
This keeps the project UUIDs consistent between regenerations, avoiding excessive workspace reloads. | |||
2019-05-05 | BUILD: Add the licence file for the Source Code Pro font | Bastien Bouclet | |
2019-04-22 | CREATE_PROJECT: Add Text console debugger feature | sluicebox | |
Add feature flag to create_project to set USE_TEXT_CONSOLE_FOR_DEBUGGER with --enable-text-console like configure script | |||
2019-04-20 | CREATE_PROJECT: Auto-detect Visual Studio version if not specified | SupSuper | |
This removes the need for separate scripts for every version | |||
2019-04-20 | CREATE_PROJECT: Add Visual Studio 2019 | SupSuper | |
2019-04-20 | CREATE_PROJECT: Refactor Visual Studio version differences | SupSuper | |
Moved most generation differences to a MSVCVersion class, makes it easier to support new versions without tracking down if-checks everywhere. | |||
2018-12-23 | MSVC: Update post-build installer for Inno Setup | SupSuper | |
2018-12-16 | BACKENDS: Add base support for system dialogs | SupSuper | |
2018-11-27 | CREATE_PROJECT: Support building with Tremor instead of Vorbis | Cameron Cawley | |
2018-05-24 | JANITORIAL: Fix trailing whitespace | Adrian Frühwirth | |
2017-12-25 | TOOLS: Add cryo and titanic tools in create_project | Strangerke | |
2017-11-17 | CREATE_PROJECT: Fix compilation failure in C++11 mode | Colin 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-24 | CREATE_PROJECT: Add fix for nested ifs | Tobia 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-08 | CREATE_PROJECT: Add support for Visual Studio 2017 | Peter Kohaut | |
2017-02-06 | CREATE_PROJECT: Disable engines for which required features are not available | Thierry Crozat | |
2017-02-06 | CREATE_PROJECT: Add highres feature | Thierry Crozat | |
2016-12-17 | CREATE_PROJECT: Fix Visual Studio linking problems after Munt merge | Paul Gilbert | |
2016-10-20 | CREATE_PROJECT: Fix MSVC project creation with curl or SDL_Net enabled | Paul Gilbert | |
2016-08-24 | CLOUD: Add USE_CLOUD feature | Alexander Tkachev | |
Adds USE_CLOUD in both configure and create_project. | |||
2016-08-22 | CREATE_PROJECT: Switch SDL backend to SDL2 by default | Filippos Karapetis | |
This adapts create_project with the changes in de04a68c06 | |||
2016-08-12 | CREATE_PROJECT: Add warning C4373 to ignore list for SCI engine | Paul Gilbert | |
2016-07-07 | DEVTOOLS: Fix create_project build with MinGW64 | Bastien Bouclet | |
2016-07-07 | DEVTOOLS: Add a CMake project generator to create_project | Bastien Bouclet | |
Also-By: Joel Teichroeb <joel@teichroeb.net> Also-By: Einar Johan Trøan Sømåen <einarjohants@gmail.com> | |||
2016-05-22 | UPDATES: Add support for WinSparkle | Filippos Karapetis | |
2016-05-22 | CREATE_PROJECT: Whitespace fixes | Filippos Karapetis | |
2016-03-24 | DEVTOOLS: 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-16 | OPENGL: 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-09 | DEVTOOLS: 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-06 | IOS: Brings support for FluidSynth | Vincent Bénony | |
2016-01-06 | IOS: Adds an helper function | 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-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: Rename XCodeProvider -> XcodeProvider | Filippos Karapetis | |
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: Revert idea about createOneProjectPerEngine. | Einar Johan Trøan Sømåen | |
2015-04-09 | CREATE_PROJECT: Define MACOSX and POSIX in XCode-projects for now (ignoring ↵ | Einar Johan Trøan Sømåen | |
iOS for the moment) | |||
2015-04-09 | CREATE_PROJECT: Enable XCode-project creation. | Einar Johan Trøan Sømåen | |
2015-04-09 | CREATE_PROJECT: Disable the WIN32-define when creating an XCode-project. | Einar Johan Trøan Sømåen | |
2015-04-09 | CREATE_PROJECT: Make ProjectProvider able to work properly with subclasses ↵ | Einar Johan Trøan Sømåen | |
that want to create one single project. |