Skip to content

iOS libraries v92 #612

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 4, 2025
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