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 8c32927f39
Now it's disabled by default and can be enabled by --enable-text-console, just
like the other projects.
This commit is contained in:
parent
2585c589fc
commit
924f208a03
1 changed files with 0 additions and 3 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue