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

Rescuers Game #1

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
48 changes: 48 additions & 0 deletions xbacov04/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
cmake_minimum_required(VERSION 2.8.3)
project(xbacov04)

find_package(catkin REQUIRED COMPONENTS
roslint
art_msgs
cv_bridge
geometry_msgs
image_geometry
rospy
std_msgs
roslaunch
rostest
art_utils
qt_build
)

find_package(Qt5 COMPONENTS Core Gui Widgets Qml Quick REQUIRED)

catkin_python_setup()

set(ROSLINT_PYTHON_OPTS "--max-line-length=250")
roslint_python()
roslint_add_test()

catkin_package(
CATKIN_DEPENDS geometry_msgs art_msgs std_msgs
)

include_directories(
${catkin_INCLUDE_DIRS}
${Qt5Core_INCLUDE_DIRS}
${Qt5Gui_INCLUDE_DIRS}
${Qt5Widgets_INCLUDE_DIRS}
${Qt5Qml_INCLUDE_DIRS}
${Qt5Quick_INCLUDE_DIRS}
)

file(GLOB QT_RESOURCES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} src/*.qrc)

#install(DIRECTORY launch/
# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch)
#
#catkin_install_python(PROGRAMS src/app.py
# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})
#
#catkin_install_python(PROGRAMS src/projector_node.py
# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})
Loading