mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
CREATE_PROJECT: Fix typo in Xcode generator interface
This commit is contained in:
parent
400ff0459c
commit
2f32eeab9d
@ -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");
|
||||
|
@ -308,7 +308,7 @@ private:
|
||||
ObjectList _buildConfiguration;
|
||||
ObjectList _configurationList;
|
||||
|
||||
void ouputMainProjectFile(const BuildSetup &setup);
|
||||
void outputMainProjectFile(const BuildSetup &setup);
|
||||
|
||||
// Setup objects
|
||||
void setupCopyFilesBuildPhase();
|
||||
|
Loading…
Reference in New Issue
Block a user