[Scummvm-git-logs] scummvm master -> 924f208a0308f03b6591d488aefaabb5a2a5597c
sluicebox
noreply at scummvm.org
Sat May 21 03:45:00 UTC 2022
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
924f208a03 CREATE_PROJECT: Text console debugger optional on Xcode
Commit: 924f208a0308f03b6591d488aefaabb5a2a5597c
https://github.com/scummvm/scummvm/commit/924f208a0308f03b6591d488aefaabb5a2a5597c
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2022-05-20T23:43:59-04:00
Commit Message:
CREATE_PROJECT: Text console debugger optional on Xcode
Prior to this, create_project always set USE_TEXT_CONSOLE_FOR_DEBUGGER on Xcode.
This was hard-coded behavior that I should have removed when I added configuring
this feature on the command line in 8c32927f393dddcbe3dfa1b19b38cd332283b6bd
Now it's disabled by default and can be enabled by --enable-text-console, just
like the other projects.
Changed paths:
devtools/create_project/xcode.cpp
diff --git a/devtools/create_project/xcode.cpp b/devtools/create_project/xcode.cpp
index eb9125fb0ff..b1dfaa880bd 100644
--- a/devtools/create_project/xcode.cpp
+++ b/devtools/create_project/xcode.cpp
@@ -1339,9 +1339,6 @@ void XcodeProvider::setupDefines(const BuildSetup &setup) {
REMOVE_DEFINE(_defines, "IPHONE_IOS7");
REMOVE_DEFINE(_defines, "IPHONE_SANDBOXED");
REMOVE_DEFINE(_defines, "SDL_BACKEND");
- if (!CONTAINS_DEFINE(_defines, "USE_TEXT_CONSOLE_FOR_DEBUGGER")) {
- ADD_DEFINE(_defines, "USE_TEXT_CONSOLE_FOR_DEBUGGER");
- }
ADD_DEFINE(_defines, "CONFIG_H");
ADD_DEFINE(_defines, "UNIX");
ADD_DEFINE(_defines, "SCUMMVM");
More information about the Scummvm-git-logs
mailing list