You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dpasukhi
changed the title
Fix link errors on macOS when not building using vcpkg.
Configuration - Fix link errors on macOS when not building using vcpkg
Jul 12, 2025
@dpasukhi Whoops! Sorry, overlooked this requirement. I just submitted the form. There are two submissions. In the first I omitted check a required checkbox.
dpasukhi
added
3. CLA approved
User has the signed CLA and ready to review or integration processes
and removed
3. CLA waited
User need to process with CLA before review or integration processes
labels
Jul 12, 2025
Thank you, I see that all fields are filled.
At the moment, internal ID is not generated, it will be done on Monday. I will ask manager to do it right in the morning, before integrations to master.
No remarks from my side. Thank you for fix!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. ConfigurationCMake/QMake processes of OCCT or samples3. CLA approvedUser has the signed CLA and ready to review or integration processes
2 participants
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When building for macOS not using
vcpkg, the build fails for some libraries because macOS-specific frameworks are not linked.This problem is caused by this code in
CMakeLists.txtThis pull request moves the
if (APPLE)block outside theif (BUILD_USE_VCPKG)which allows OCCT to built without errors from macOS.