Merge topic 'fix-xcode-custom-rules-makefile'
66d9cd8
Xcode: Disable implicit make rules in custom rules makefiles.
This commit is contained in:
commit
9ea63c581b
|
@ -1279,6 +1279,9 @@ void cmGlobalXCodeGenerator
|
|||
makefileStream << "# Generated by CMake, DO NOT EDIT\n";
|
||||
makefileStream << "# Custom rules for " << target.GetName() << "\n";
|
||||
|
||||
// disable the implicit rules
|
||||
makefileStream << ".SUFFIXES: " << "\n";
|
||||
|
||||
// have all depend on all outputs
|
||||
makefileStream << "all: ";
|
||||
std::map<const cmCustomCommand*, cmStdString> tname;
|
||||
|
|
Loading…
Reference in New Issue