File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ bool xcodeProject::createProjectFile(){
100100 for (auto & f : {" openFrameworks-Info.plist" , " of.entitlements" }) {
101101 copyTemplateFiles.push_back ({normalizePath (templatePath / f), normalizePath (projectDir / f)});
102102 }
103- } else if (target == " ios" || target == " macos" ) {
103+ } else if (target == " ios" || target == " tvos " || target == " visionos " || target == " catos " || target == " macos" ) {
104104 for (auto & f : {" ofxiOS-Info.plist" , " ofxiOS_Prefix.pch" }) {
105105 copyTemplateFiles.push_back ({normalizePath (templatePath / f), normalizePath (projectDir / f)});
106106 try {
Original file line number Diff line number Diff line change @@ -435,7 +435,7 @@ unique_ptr<baseProject> getTargetProject(const string & targ) {
435435// cout << "getTargetProject :" << getTargetString(targ) << endl;
436436// typedef xcodeProject pgProject;
437437
438- if (targ == " osx" || targ == " ios" || targ == " macos" ) {
438+ if (targ == " osx" || targ == " ios" || targ == " macos" || targ == " tvos " || targ == " catos " || targ == " visionos " || targ == " watchos " ) {
439439 return unique_ptr<xcodeProject>(new xcodeProject (targ));
440440 } else if (targ == " msys2" ) {
441441// return unique_ptr<QtCreatorProject>(new QtCreatorProject(targ));
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ static std::vector < std::string > platformsOptions {
5555 " msys2" ,
5656 " osx" ,
5757 " vs" ,
58+ " tvos" ,
5859};
5960
6061string generateUUID (const string & input);
You can’t perform that action at this time.
0 commit comments