diff options
author | SupSuper | 2019-07-01 01:57:26 +0100 |
---|---|---|
committer | SupSuper | 2019-07-01 01:57:26 +0100 |
commit | 74f9e0dfc0541597131c50230634d99488273d25 (patch) | |
tree | 018f36866190bdbc74028802bd626b3ad4e01225 /devtools/create_project | |
parent | cfee64e630655c107b3a7499cbb5f25a9ebe72b4 (diff) | |
download | scummvm-rg350-74f9e0dfc0541597131c50230634d99488273d25.tar.gz scummvm-rg350-74f9e0dfc0541597131c50230634d99488273d25.tar.bz2 scummvm-rg350-74f9e0dfc0541597131c50230634d99488273d25.zip |
CREATE_PROJECT: Remove obsolete "browser.cpp" hack
browser.cpp no longer depends on the target platform since pull request #1414
Diffstat (limited to 'devtools/create_project')
-rw-r--r-- | devtools/create_project/xcode.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/devtools/create_project/xcode.cpp b/devtools/create_project/xcode.cpp index abfa3f0c10..8312a3ce10 100644 --- a/devtools/create_project/xcode.cpp +++ b/devtools/create_project/xcode.cpp @@ -133,12 +133,6 @@ bool shouldSkipFileForTarget(const std::string &fileID, const std::string &targe } } else { - // Ugly hack: explicitly remove the browser.cpp file. - // The problem is that we have only one project for two different targets, - // and the parsing of the "mk" files added this file for both targets... - if (fileID.length() > 12 && fileID.substr(fileID.length() - 12) == "/browser.cpp") { - return true; - } // macOS target: we skip all files with the "_ios" suffix if (name.length() > 4 && name.substr(name.length() - 4) == "_ios") { return true; |