mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
CREATE_PROJECT: Escape \" in "<group>" for PBXFileReferences during writeFileListToProject
This has to be applied explicitly, as modifying ADD_FILE_REFERENCE to use SettingsQuoteVariable would be wrong (i.e. SDKROOT should not become "SDKROOT").
This commit is contained in:
parent
e69696a536
commit
8f66bc1c92
@ -191,7 +191,7 @@ void XCodeProvider::writeFileListToProject(const FileNode &dir, std::ofstream &p
|
||||
const FileNode *node = *i;
|
||||
|
||||
std::string id = "FileReference_" + node->name;
|
||||
FileProperty property = FileProperty(node->name, node->name, node->name, "<group>");
|
||||
FileProperty property = FileProperty(node->name, node->name, node->name, "\"<group>\"");
|
||||
|
||||
ADD_SETTING_ORDER_NOVALUE(children, getHash(node->name), node->name, order++);
|
||||
ADD_BUILD_FILE(id, node->name, node->name + " in Sources");
|
||||
|
Loading…
Reference in New Issue
Block a user