diff options
| author | Bastien Bouclet | 2017-10-25 19:17:11 +0200 |
|---|---|---|
| committer | GitHub | 2017-10-25 19:17:11 +0200 |
| commit | bd82345f0b634e5ccf7b2412a0d7cad7232057c5 (patch) | |
| tree | 724b183a5e39a6f3f52067d2f1214a7728b2709a /devtools/create_project | |
| parent | 2ded98b482f30d2a990f06365b7f612ab4d115b2 (diff) | |
| parent | bbdbd85324a9c02019e242ab93b3ae569292356c (diff) | |
| download | scummvm-rg350-bd82345f0b634e5ccf7b2412a0d7cad7232057c5.tar.gz scummvm-rg350-bd82345f0b634e5ccf7b2412a0d7cad7232057c5.tar.bz2 scummvm-rg350-bd82345f0b634e5ccf7b2412a0d7cad7232057c5.zip | |
Merge pull request #1035 from bgK/require-64bits-integers
BUILD: Require 64bits integers
Diffstat (limited to 'devtools/create_project')
| -rw-r--r-- | devtools/create_project/cmake.cpp | 4 | ||||
| -rw-r--r-- | devtools/create_project/msvc.cpp | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/devtools/create_project/cmake.cpp b/devtools/create_project/cmake.cpp index dfa54875be..9be76f9fe8 100644 --- a/devtools/create_project/cmake.cpp +++ b/devtools/create_project/cmake.cpp @@ -242,10 +242,6 @@ void CMakeProvider::writeDefines(const BuildSetup &setup, std::ofstream &output) output << " add_definitions(-DPOSIX)\n"; output << "endif()\n"; - output << "if (CMAKE_SIZEOF_VOID_P MATCHES 8)\n"; - output << " add_definitions(-DSCUMM_64BITS)\n"; - output << "endif()\n"; - output << "add_definitions(-DSDL_BACKEND)\n\n"; } diff --git a/devtools/create_project/msvc.cpp b/devtools/create_project/msvc.cpp index 64f3472697..e6b47fe724 100644 --- a/devtools/create_project/msvc.cpp +++ b/devtools/create_project/msvc.cpp @@ -158,7 +158,6 @@ void MSVCProvider::createGlobalProp(const BuildSetup &setup) { // HACK: This definitely should not be here, but otherwise we would not define SDL_BACKEND for x64. x64Defines.push_back("WIN32"); x64Defines.push_back("SDL_BACKEND"); - x64Defines.push_back("SCUMM_64BITS"); outputGlobalPropFile(setup, properties, 64, x64Defines, convertPathToWin(setup.filePrefix), setup.runBuildEvents); } |
