BUILD: Define pointer sized integer types and remove SCUMM_64BITS

This commit is contained in:
Bastien Bouclet 2017-09-24 19:06:17 +02:00
parent 9db2953ca3
commit 55f46d3667
6 changed files with 29 additions and 41 deletions

View file

@ -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";
}