mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-06 19:08:15 +00:00
CREATE_PROJECT: Disable XCode support by default
This commit is contained in:
parent
b94cce639d
commit
eda43c2d86
@ -20,6 +20,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
//#define ENABLE_XCODE
|
||||
|
||||
// HACK to allow building with the SDL backend on MinGW
|
||||
// see bug #1800764 "TOOLS: MinGW tools building broken"
|
||||
#ifdef main
|
||||
@ -177,6 +179,7 @@ int main(int argc, char *argv[]) {
|
||||
|
||||
projectType = kProjectMSVC;
|
||||
|
||||
#ifdef ENABLE_XCODE
|
||||
} else if (!std::strcmp(argv[i], "--xcode")) {
|
||||
if (projectType != kProjectNone) {
|
||||
std::cerr << "ERROR: You cannot pass more than one project type!\n";
|
||||
@ -184,6 +187,7 @@ int main(int argc, char *argv[]) {
|
||||
}
|
||||
|
||||
projectType = kProjectXcode;
|
||||
#endif
|
||||
|
||||
} else if (!std::strcmp(argv[i], "--msvc-version")) {
|
||||
if (i + 1 >= argc) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user