Skip to content

Commit

Permalink
Fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
eyr1n committed Feb 3, 2023
1 parent 23c730a commit 566ea85
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 3 additions & 5 deletions jsk_rviz_plugins/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ find_package(ament_cmake REQUIRED)
find_package(rviz_common REQUIRED)
find_package(rviz_rendering REQUIRED)
find_package(rviz_ogre_vendor REQUIRED)
find_package(Qt5Widgets REQUIRED)
find_package(Qt5Test REQUIRED)
find_package(Qt5 REQUIRED COMPONENTS Widgets Test)
find_package(image_transport REQUIRED)
find_package(cv_bridge REQUIRED)
find_package(Boost REQUIRED)

find_package(rclcpp REQUIRED)
find_package(std_msgs REQUIRED)
Expand All @@ -46,7 +46,7 @@ find_package(jsk_rviz_plugin_msgs REQUIRED)
find_package(jsk_topic_tools REQUIRED)

# for Ogre include files
include_directories(${ADDITIONAL_INCLUDE_DIRS} ${OGRE_INCLUDE_DIRS} ${OGRE_INCLUDE_DIRS}/Paging)
include_directories(${ADDITIONAL_INCLUDE_DIRS} ${OGRE_INCLUDE_DIRS} ${OGRE_INCLUDE_DIRS}/Paging ${Boost_INCLUDE_DIRS})

# Qt5 boilerplate options from http://doc.qt.io/qt-5/cmake-manual.html
set(CMAKE_INCLUDE_CURRENT_DIR ON)
Expand Down Expand Up @@ -157,8 +157,6 @@ ament_export_libraries(jsk_rviz_plugins)
# ament_export_include_directories(include)
ament_export_targets(export_jsk_rviz_plugins HAS_LIBRARY_TARGET)
ament_export_dependencies(
Qt5Widgets
Qt5Test
rviz_common
cv_bridge
image_transport
Expand Down
1 change: 1 addition & 0 deletions jsk_rviz_plugins/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

<build_depend>qtbase5-dev</build_depend>
<build_depend>rviz_ogre_vendor</build_depend>
<build_depend>boost</build_depend>
<build_export_depend>rviz_ogre_vendor</build_export_depend>

<exec_depend>libqt5-core</exec_depend>
Expand Down

0 comments on commit 566ea85

Please sign in to comment.