We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bbb018 commit fdb7762Copy full SHA for fdb7762
commandLine/src/projects/baseProject.h
@@ -1,6 +1,6 @@
1
#pragma once
2
3
-#define PG_VERSION "47"
+#define PG_VERSION "48"
4
5
#include "ofAddon.h"
6
#include "pugixml.hpp"
commandLine/src/projects/xcodeProject.cpp
@@ -838,7 +838,8 @@ bool xcodeProject::saveProjectFile(){
838
json j { json::parse(contents) };
839
contents.close();
840
841
- j["_OFProjectGeneratorVersion"] = getPGVersion();
+ json jversion = getPGVersion();
842
+ j["_OFProjectGeneratorVersion"] = jversion;
843
844
845
for (auto & c : commands) {
0 commit comments