forked from chataign/ueye_driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
38 lines (28 loc) · 1.07 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
cmake_minimum_required(VERSION 2.8.3)
project(ueye_driver)
include(CheckCXXCompilerFlag)
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11 )
if( NOT COMPILER_SUPPORTS_CXX11 )
message(FATAL_ERROR "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.")
endif()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall")
set(CMAKE_BUILD_TYPE RelWithDebInfo)
find_library(UEYE_LIBRARY ueye_api)
if( NOT UEYE_LIBRARY )
message(FATAL_ERROR "libueye_api was not found in system's library path")
endif()
message(STATUS "ueye_api library: ${UEYE_LIBRARY}")
message(STATUS "ueye_api include: ${UEYE_INCLUDE_DIR}")
find_package(catkin REQUIRED COMPONENTS
roscpp image_transport sensor_msgs camera_calibration_parsers
)
catkin_package(
# INCLUDE_DIRS include
# LIBRARIES
# CATKIN_DEPENDS roscpp
# DEPENDS system_lib
)
include_directories( ${catkin_INCLUDE_DIRS} ${UEYE_INCLUDE_DIR} )
file( GLOB SOURCES src/*.cpp )
add_executable( ${PROJECT_NAME} ${SOURCES} )
target_link_libraries( ${PROJECT_NAME} ${catkin_LIBRARIES} ${UEYE_LIBRARY} )