aboutsummaryrefslogtreecommitdiff
path: root/devtools
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
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')
-rw-r--r--devtools/create_project/xcode.cpp4
-rw-r--r--devtools/create_project/xcode.h2
2 files changed, 3 insertions, 3 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");
diff --git a/devtools/create_project/xcode.h b/devtools/create_project/xcode.h
index d495dd0dfd..c3b44b2590 100644
--- a/devtools/create_project/xcode.h
+++ b/devtools/create_project/xcode.h
@@ -308,7 +308,7 @@ private:
ObjectList _buildConfiguration;
ObjectList _configurationList;
- void ouputMainProjectFile(const BuildSetup &setup);
+ void outputMainProjectFile(const BuildSetup &setup);
// Setup objects
void setupCopyFilesBuildPhase();