加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
CMakeLists.txt 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
ycpengpeng 提交于 2021-05-06 14:54 . init git
cmake_minimum_required(VERSION 2.8.3)
project(motor)
set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
add_definitions(-std=c++11 -g -O3 -ftree-vectorize -march=native)
find_package(catkin REQUIRED COMPONENTS
roscpp
rospy
serial
std_msgs
message_generation
cv_bridge
sensor_msgs
image_transport
)
find_package(
OpenCV REQUIRED
)
add_message_files(
FILES
Flow.msg
# Message2.msg
)
generate_messages(
DEPENDENCIES
std_msgs
)
catkin_package(
CATKIN_DEPENDS message_runtime
# INCLUDE_DIRS include
# LIBRARIES px4flow
# CATKIN_DEPENDS roscpp serial std_msgs
# DEPENDS system_lib
)
include_directories(
# include
${catkin_INCLUDE_DIRS}
${OpenCV_INCLUDE_DIRS}$
)
add_executable(motor_driver src/motor_driver.cpp)
target_link_libraries(motor_driver ${catkin_LIBRARIES})
add_executable(Posi_Vel_pubandsub src/Posi_Vel_pubandsub.cpp)
target_link_libraries(Posi_Vel_pubandsub ${catkin_LIBRARIES})
add_executable(Blur_test src/Blur_test.cpp)
target_link_libraries(Blur_test ${catkin_LIBRARIES} ${OpenCV_LIBRARIES})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化