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

Improve package with catkin_lint #89

Merged
merged 1 commit into from Aug 22, 2018
Merged
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
18 changes: 9 additions & 9 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,25 @@ add_definitions(-W -Wall -Wextra

find_package(catkin REQUIRED COMPONENTS
eigen_conversions
eigen_stl_containers
geometry_msgs
graph_msgs
roscpp
roslint
rostest
rviz
sensor_msgs
std_msgs
tf_conversions
trajectory_msgs
visualization_msgs
roslint
eigen_stl_containers
rviz
sensor_msgs
)

find_package(Eigen3 REQUIRED)
find_package(Boost REQUIRED thread system)

# Qt 4 or 5
if(rviz_QT_VERSION VERSION_LESS "5")
if("${rviz_QT_VERSION}" VERSION_LESS "5")
find_package(Qt4 ${rviz_QT_VERSION} REQUIRED QtCore QtGui)
include(${QT_USE_FILE})
macro(qt_wrap_ui)
Expand Down Expand Up @@ -60,13 +60,13 @@ catkin_package(
CATKIN_DEPENDS
eigen_conversions
geometry_msgs
visualization_msgs
graph_msgs
roscpp
sensor_msgs
std_msgs
tf_conversions
trajectory_msgs
sensor_msgs
roscpp
visualization_msgs
INCLUDE_DIRS
include
)
Expand Down Expand Up @@ -150,8 +150,8 @@ install(
TARGETS
${PROJECT_NAME}
${PROJECT_NAME}_gui
${PROJECT_NAME}_remote_control
${PROJECT_NAME}_imarker_simple
${PROJECT_NAME}_remote_control
LIBRARY DESTINATION
${CATKIN_PACKAGE_LIB_DESTINATION}
)
Expand Down