aboutsummaryrefslogtreecommitdiff
path: root/devtools/create_project
AgeCommit message (Collapse)Author
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-20DISTS: Merge MSVC versions into one folderSupSuper
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.
2019-04-02BUILD: Update default theme to use remasteredMatan Bareket
2018-12-25BUILD: Add fonts.dat to packaging rulesCameron Cawley
2018-12-23MSVC: Update DLL paths in post-build scriptSupSuper
2018-12-23MSVC: Update post-build installer for Inno SetupSupSuper
2018-12-23MSVC: Fix unquoted paths in build eventsSupSuper
2018-12-23MSVC: Fix resource file revision include errorSupSuper
2018-12-23MSVC: Fix resource file not including translations.datSupSuper
2018-12-23MSVC: Add visualiser for unicode stringsSupSuper
2018-12-23MSVC: Fix natvis not being added to project in VS2017SupSuper
2018-12-23MSVC: Add visualisations for iterators and pointersSupSuper
2018-12-23MSVC: Cleanup natvis propertiesSupSuper
2018-12-23MSVC: Fix List visualisation showing infinite nodesSupSuper
2018-12-23MSVC: Fix HashMap visualisation showing dummy nodesSupSuper
2018-12-23MSVC: Replace MinimalRebuild with MultiProcessor flagSupSuper
MinimalRebuild is obsolete and MultiProcessorCompilation yields better performance.
2018-12-23CREATE_PROJECT: Fix MSVC warningsSupSuper
2018-12-16BACKENDS: Move OSX file browser into backendSupSuper
2018-12-16BACKENDS: Add base support for system dialogsSupSuper
2018-11-27CREATE_PROJECT: Support building with Tremor instead of VorbisCameron Cawley
2018-11-17CREATE_PROJECT: Remove non-existent msvc8 from build stepsSupSuper
2018-10-28IOS: 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-07DEVTOOLS: Fix Performance Issue Warning in create_project.D G Turner
This is the last fix for bug Trac #10655.
2018-08-28MACOSX: Put documentation links in Help menuColin 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-11CREATE_PROJECT: Fix creating CMake projects outside of the main source directoryCameron Cawley
2018-05-24JANITORIAL: Fix trailing whitespaceAdrian Frühwirth
2018-04-22CREATE_PROJECT: CMAKE: Fix importing SDL2 when it was built using CMakeBastien 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-20CREATE_PROJECT: Place libs requiring symbols before libs providing themBastien 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-23XEEN: Creation of create_xeen toolPaul Gilbert
2018-01-23BUILD: Add supernova.dat to install rulesThierry Crozat
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-10-25Merge pull request #1035 from bgK/require-64bits-integersBastien Bouclet
BUILD: Require 64bits integers
2017-10-12CREATE_PROJECT: Support using libjpeg for iOS buildsThierry Crozat
2017-10-12CREATE_PROJECT: Fix some compilation issues for iOSThierry 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-03DEVTOOLS: Add theoradec support to Xcode create_projectColin Snover
2017-09-30BUILD: Define pointer sized integer types and remove SCUMM_64BITSBastien Bouclet
2017-09-10CREATE_PROJECT: Fix typo in unused macroColin Snover
2017-09-10CREATE_PROJECT: Add LastUpgradeCheck to generated project fileColin Snover
This prevents the recommended updates warning appearing when opening the project in Xcode for the first time.
2017-09-10CREATE_PROJECT: Update Xcode generator to use most Xcode-recommended warningsColin Snover
2017-09-10CREATE_PROJECT: Increment default iOS build target in Xcode generatorColin Snover
Xcode 8/macOS 10.12 minimum target for iOS is now iOS 8.
2017-09-10CREATE_PROJECT: Ignore undefined-var-template warnings by defaultColin 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-10CREATE_PROJECT: Move browser_osx.mm hack to Xcode generatorColin 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-10CREATE_PROJECT: Allow FluidSynth on macOSColin 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-10CREATE_PROJECT: Fix Xcode builder library includesColin 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-10CREATE_PROJECT: Fix typo in Xcode generator interfaceColin Snover
2017-07-02BUILD: Add titanic.dat files to the list of engines data filesThierry Crozat