CREATE_PROJECT: Add SCUMM_64BITS to ScummVM_Global64.props (fixes #9566)

This commit is contained in:
Littleboy 2016-09-23 22:34:47 -04:00
parent c443b84dae
commit e34960f633

View File

@ -158,6 +158,7 @@ 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);
}