Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion commandLine/src/defines.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define OFPROJECTGENERATOR_MAJOR_VERSION "0"
#define OFPROJECTGENERATOR_MINOR_VERSION "91"
#define OFPROJECTGENERATOR_MINOR_VERSION "92"
#define OFPROJECTGENERATOR_PATCH_VERSION "0"

#define PG_VERSION (OFPROJECTGENERATOR_MAJOR_VERSION "." OFPROJECTGENERATOR_MINOR_VERSION "." OFPROJECTGENERATOR_PATCH_VERSION)
Expand Down
4 changes: 2 additions & 2 deletions commandLine/src/projects/xcodeProject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ void xcodeProject::addFramework(const fs::path & path, const fs::path & folder,
fp.codeSignOnCopy = !isRelativeToSDK;
fp.copyFilesBuildPhase = !isRelativeToSDK;
fp.isRelativeToSDK = isRelativeToSDK;
fp.frameworksBuildPhase = (target != "ios" && !folder.empty());
fp.frameworksBuildPhase = !folder.empty();

string UUID;
if (isRelativeToSDK) {
Expand Down Expand Up @@ -886,7 +886,7 @@ string xcodeProject::addFile(const fs::path & path, const fs::path & folder, con
addCommand("Add :objects:E4B69B590A3A1756003C02F2:files: string " + tempUUID);
}

if (path.extension() == ".framework") {
if (path.extension() == ".framework" || path.extension() == ".xcframework") {
addCommand("# ---- Frameworks Folder " + UUID);
addCommand("Add :objects:901808C02053638E004A7774:children: string " + UUID);

Expand Down