cmake_minimum_required(VERSION 3.0.2) project(mpc_tracking) ## Compile as C++11, supported in ROS Kinetic and newer add_compile_options(-std=c++14) find_package(casadi REQUIRED) find_package(catkin REQUIRED COMPONENTS geometry_msgs nav_msgs roscpp std_msgs tf2 visualization_msgs bspline bspline_opt traj_utils quadrotor_msgs message_generation ) # Generate messages in the 'msg' folder add_message_files( FILES Bspline.msg ) # Generate added messages and services with any dependencies listed here generate_messages( DEPENDENCIES std_msgs geometry_msgs ) ################################### ## catkin specific configuration ## ################################### ## The catkin_package macro generates cmake config files for your package ## Declare things to be passed to dependent projects ## INCLUDE_DIRS: uncomment this if your package contains header files ## LIBRARIES: libraries you create in this project that dependent projects also need ## CATKIN_DEPENDS: catkin_packages dependent projects also need ## DEPENDS: system dependencies of this project that dependent projects also need catkin_package( INCLUDE_DIRS include LIBRARIES mpc_test CATKIN_DEPENDS geometry_msgs nav_msgs roscpp std_msgs tf2 message_runtime # DEPENDS system_lib ) ########### ## Build ## ########### ## Specify additional locations of header files ## Your package locations should be listed before other locations include_directories( include ${catkin_INCLUDE_DIRS} ${PROJECT_SOURCE_DIR}/include ) include_directories(/usr/local/include) link_directories(/usr/local/lib) ## Declare a C++ library #add_library(${PROJECT_NAME} # src/mpc.cpp # ) ## Add cmake target dependencies of the library ## as an example, code may need to be generated before libraries ## either from message generation or dynamic reconfigure # add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) ## Declare a C++ executable ## With catkin_make all packages are built within a single CMake context ## The recommended prefix ensures that target names across packages don't collide add_executable(${PROJECT_NAME}_node src/mpc_node.cpp src/mpc.cpp) ## Rename C++ executable without prefix ## The above recommended prefix causes long target names, the following renames the ## target back to the shorter version for ease of user use ## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node" # set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "") ## Add cmake target dependencies of the executable ## same as for the library above # add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) ## Specify libraries to link a library or executable target against target_link_libraries(${PROJECT_NAME}_node ${catkin_LIBRARIES} #ipopt #dw casadi )