Skip to content
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

Fix macos guis compilation #1635

Merged
merged 2 commits into from
Apr 7, 2018
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
3 changes: 3 additions & 0 deletions cmake/YarpOSXUtilities.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ function(YARP_OSX_DUPLICATE_AND_ADD_BUNDLE)
elseif("${_prop_name}" MATCHES "<.+>")
# Remove other properties containing "<...>" that are not target properties.
list(REMOVE_ITEM _all_properties "${_prop_name}")
elseif("${_prop_name}" MATCHES "IMPORTED_GLOBAL")
# Remove other properties containing "IMPORTED_GLOBAL".
list(REMOVE_ITEM _all_properties "${_prop_name}")
endif()
endforeach()

Expand Down
4 changes: 4 additions & 0 deletions doc/release/v2_3_72_1.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ Bug Fixes

* Fixed build with CMake < 3.4

### CMake Modules

* Removed IMPORTED_GLOBAL property from YarpOSXUtilities.cmake.


### Libraries

Expand Down