Skip to content

Commit

Permalink
Fix installation of import libraries on Windows (#657)
Browse files Browse the repository at this point in the history
* Fix installation of import libraries on Windows

Fix #655
  • Loading branch information
traversaro authored Jul 31, 2023
1 parent 691f610 commit 8f4aace
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ The format of this document is based on [Keep a Changelog](https://keepachangelo
## [Unreleased]

### Added

- The `gazebo_yarp_forcetorque` plugin now exposes also the `yarp::dev::ITemperatureSensors` interface, so it can stream fake temperature values (https://github.com/robotology/gazebo-yarp-plugins/pull/656).

### Fixed
- Fix installation of import libraries on Windows (https://github.com/robotology/gazebo-yarp-plugins/pull/657).

## [4.7.0] - 2023-06-05

### Changed
Expand Down
3 changes: 2 additions & 1 deletion cmake/AddGazeboYarpPluginTarget.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ endif()
install(TARGETS ${GAZEBO_PLUGIN_LIBRARY_NAME}
EXPORT GazeboYARPPlugins
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}")
LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}"
ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}")

endmacro()

0 comments on commit 8f4aace

Please sign in to comment.