aboutsummaryrefslogtreecommitdiff
path: root/devtools/create_project/xcode.cpp
diff options
context:
space:
mode:
authorColin Snover2017-09-10 19:39:40 -0500
committerColin Snover2017-09-10 22:17:12 -0500
commit2f32eeab9def91ade9d279f4634c46b294960c14 (patch)
tree45a7de247aed2fefba32527b1c643ecd6ca4859a /devtools/create_project/xcode.cpp
parent400ff0459cd4a1ea70b38e65df1a931c478ecee3 (diff)
downloadscummvm-rg350-2f32eeab9def91ade9d279f4634c46b294960c14.tar.gz
scummvm-rg350-2f32eeab9def91ade9d279f4634c46b294960c14.tar.bz2
scummvm-rg350-2f32eeab9def91ade9d279f4634c46b294960c14.zip
CREATE_PROJECT: Fix typo in Xcode generator interface
Diffstat (limited to 'devtools/create_project/xcode.cpp')
-rw-r--r--devtools/create_project/xcode.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/devtools/create_project/xcode.cpp b/devtools/create_project/xcode.cpp
index d60934bcb8..61f1c3eb66 100644
--- a/devtools/create_project/xcode.cpp
+++ b/devtools/create_project/xcode.cpp
@@ -314,7 +314,7 @@ void XcodeProvider::createOtherBuildFiles(const BuildSetup &setup) {
// This needs to be done at the end when all build files have been accounted for
setupSourcesBuildPhase();
- ouputMainProjectFile(setup);
+ outputMainProjectFile(setup);
}
// Store information about a project here, for use at the end
@@ -337,7 +337,7 @@ void XcodeProvider::createProjectFile(const std::string &, const std::string &,
//////////////////////////////////////////////////////////////////////////
// Main Project file
//////////////////////////////////////////////////////////////////////////
-void XcodeProvider::ouputMainProjectFile(const BuildSetup &setup) {
+void XcodeProvider::outputMainProjectFile(const BuildSetup &setup) {
std::ofstream project((setup.outputDir + '/' + PROJECT_NAME ".xcodeproj" + '/' + "project.pbxproj").c_str());
if (!project)
error("Could not open \"" + setup.outputDir + '/' + PROJECT_NAME ".xcodeproj" + '/' + "project.pbxproj\" for writing");