Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-12-25 | BUILD: Add fonts.dat to packaging rules | Cameron Cawley | |
2018-12-23 | MSVC: Update DLL paths in post-build script | SupSuper | |
2018-12-23 | MSVC: Update post-build installer for Inno Setup | SupSuper | |
2018-12-23 | MSVC: Fix unquoted paths in build events | SupSuper | |
2018-12-23 | MSVC: Fix resource file revision include error | SupSuper | |
2018-12-23 | MSVC: Fix resource file not including translations.dat | SupSuper | |
2018-12-23 | MSVC: Add visualiser for unicode strings | SupSuper | |
2018-12-23 | MSVC: Fix natvis not being added to project in VS2017 | SupSuper | |
2018-12-23 | MSVC: Add visualisations for iterators and pointers | SupSuper | |
2018-12-23 | MSVC: Cleanup natvis properties | SupSuper | |
2018-12-23 | MSVC: Fix List visualisation showing infinite nodes | SupSuper | |
2018-12-23 | MSVC: Fix HashMap visualisation showing dummy nodes | SupSuper | |
2018-12-23 | MSVC: Replace MinimalRebuild with MultiProcessor flag | SupSuper | |
MinimalRebuild is obsolete and MultiProcessorCompilation yields better performance. | |||
2018-12-23 | CREATE_PROJECT: Fix MSVC warnings | SupSuper | |
2018-12-16 | BACKENDS: Move OSX file browser into backend | 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-11-17 | CREATE_PROJECT: Remove non-existent msvc8 from build steps | SupSuper | |
2018-10-28 | IOS: Support building in Xcode 10/iOS 12, and for iPhone X-like devices that ↵ | Yoshi Sugawara | |
have a "safe area" iOS 12 drops support for libstdc++, so the project needs to be compiled explicitly using libc++. Support the "safe area" when redrawing the view to leave space for the notch in portrait and landscape orientations. | |||
2018-10-07 | DEVTOOLS: Fix Performance Issue Warning in create_project. | D G Turner | |
This is the last fix for bug Trac #10655. | |||
2018-08-28 | MACOSX: Put documentation links in Help menu | Colin Snover | |
The local documents are not currently internationalised simply because the internationalised resources are not put into the right places (NSBundle will handle this automatically when they are); Trac#10464 is a tracking bug for this outstanding issue. Fixes Trac#10437. | |||
2018-08-11 | CREATE_PROJECT: Fix creating CMake projects outside of the main source directory | Cameron Cawley | |
2018-05-24 | JANITORIAL: Fix trailing whitespace | Adrian Frühwirth | |
2018-04-22 | CREATE_PROJECT: CMAKE: Fix importing SDL2 when it was built using CMake | Bastien Bouclet | |
When SDL is built using CMake, Find_Package imports a target instead of defining variables. If a target was imported we now define the include path and linker flags variables from the target's properties. Using imported targets is a best practice. Ideally, we should define an imported target when we detect variables were defined. However, the linker flags variable would need to be parsed into a library path and a list of libraries, making that approach impractical. | |||
2018-03-20 | CREATE_PROJECT: Place libs requiring symbols before libs providing them | Bastien Bouclet | |
In the CMake generator. So the linker can resolve the symbols it marked as unresolved as it walks the libraries. Fixes building ResidualVM with msys2 from Qt Creator on Windows. | |||
2018-02-23 | XEEN: Creation of create_xeen tool | Paul Gilbert | |
2018-01-23 | BUILD: Add supernova.dat to install rules | Thierry Crozat | |
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-10-25 | Merge pull request #1035 from bgK/require-64bits-integers | Bastien Bouclet | |
BUILD: Require 64bits integers | |||
2017-10-12 | CREATE_PROJECT: Support using libjpeg for iOS builds | Thierry Crozat | |
2017-10-12 | CREATE_PROJECT: Fix some compilation issues for iOS | Thierry Crozat | |
Note that this still doesn't compile with the library package provided by bSr43 because this package is missing libvorbisfile.a and has a non standard name for libglib-2.0.a. But it would probably be better to fix the package than maintain non-standard packages. | |||
2017-10-03 | DEVTOOLS: Add theoradec support to Xcode create_project | Colin Snover | |
2017-09-30 | BUILD: Define pointer sized integer types and remove SCUMM_64BITS | Bastien Bouclet | |
2017-09-10 | CREATE_PROJECT: Fix typo in unused macro | Colin Snover | |
2017-09-10 | CREATE_PROJECT: Add LastUpgradeCheck to generated project file | Colin Snover | |
This prevents the recommended updates warning appearing when opening the project in Xcode for the first time. | |||
2017-09-10 | CREATE_PROJECT: Update Xcode generator to use most Xcode-recommended warnings | Colin Snover | |
2017-09-10 | CREATE_PROJECT: Increment default iOS build target in Xcode generator | Colin Snover | |
Xcode 8/macOS 10.12 minimum target for iOS is now iOS 8. | |||
2017-09-10 | CREATE_PROJECT: Ignore undefined-var-template warnings by default | Colin Snover | |
Starting in Xcode 8, clang reports warnings about singleton instantiation which are noisy, so suppress these warnings for the moment. An attempt to fix this properly was added in eefa72afa1978a9dea10f5b1833fcc8f58a3468e but it was backed out in 940b2a20f1cd490afb6e541a3cd26f0d3bdd1687. See https://github.com/scummvm/scummvm/pull/967 and https://github.com/scummvm/scummvm/pull/994. | |||
2017-09-10 | CREATE_PROJECT: Move browser_osx.mm hack to Xcode generator | Colin Snover | |
c19c10d548b2867bc4fd003fb29ac0017b2bd29d fixed the bad parsing of module.mk which meant the Xcode generator broke. For the moment, just move the hack for browser_osx.mm into the generator, until there is a more elegant solution to this problem (if ever). | |||
2017-09-10 | CREATE_PROJECT: Allow FluidSynth on macOS | Colin Snover | |
FluidSynth does build and run successfully, but it is necessary to get the correct static libraries. It can be manually built against dylib, if desired, by manually adding the fluidsynth.dylib to the Frameworks. Since this will result in a runtime dependency, this is not set up by default. | |||
2017-09-10 | CREATE_PROJECT: Fix Xcode builder library includes | Colin Snover | |
Libraries were being included unconditionally regardless of the arguments passed to create_project, and in the case of macOS were being added using manual linker flags and other such hacks instead of using the Frameworks list. | |||
2017-09-10 | CREATE_PROJECT: Fix typo in Xcode generator interface | Colin Snover | |
2017-07-02 | BUILD: Add titanic.dat files to the list of engines data files | Thierry Crozat | |
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-04-18 | JANITORIAL: Remove superfluous semicolons | Torbjörn Andersson | |
2017-03-10 | CREATE_PROJECT: Support for a different target build directory in CMake | Peter Kohaut | |
2017-03-08 | CREATE_PROJECT: Fixed solution version for Visual Studio 2015 | Peter Kohaut | |
2017-03-08 | CREATE_PROJECT: Add support for Visual Studio 2017 | Peter Kohaut | |
2017-02-12 | CREATE_PROJECT: Add data files for access, cryo and macventure in Xcode projects | Thierry Crozat | |