2018-11-22 17:48:30 +01:00
|
|
|
cmake_minimum_required(VERSION 2.8.3)
|
|
|
|
project(wlan_pioneer)
|
|
|
|
|
2018-11-22 19:48:11 +01:00
|
|
|
add_compile_options(-std=c++11)
|
2018-11-22 17:48:30 +01:00
|
|
|
|
|
|
|
find_package(catkin REQUIRED COMPONENTS
|
|
|
|
roscpp
|
2018-12-11 12:34:35 +01:00
|
|
|
std_msgs
|
2018-11-22 19:48:11 +01:00
|
|
|
message_generation
|
2018-11-22 17:48:30 +01:00
|
|
|
)
|
|
|
|
|
2018-11-22 19:48:11 +01:00
|
|
|
add_message_files(
|
|
|
|
FILES
|
|
|
|
WlanSignalMsg.msg
|
|
|
|
)
|
2018-11-22 17:48:30 +01:00
|
|
|
|
2018-11-22 19:48:11 +01:00
|
|
|
generate_messages(
|
|
|
|
DEPENDENCIES
|
|
|
|
std_msgs
|
|
|
|
)
|
2018-11-22 17:48:30 +01:00
|
|
|
|
2018-12-13 21:43:05 +01:00
|
|
|
catkin_package( )
|
2018-11-22 17:48:30 +01:00
|
|
|
|
|
|
|
include_directories(
|
|
|
|
${catkin_INCLUDE_DIRS}
|
2018-12-13 21:43:05 +01:00
|
|
|
/usr/local/include/
|
2018-11-22 17:48:30 +01:00
|
|
|
)
|
|
|
|
|
2018-12-13 21:43:05 +01:00
|
|
|
link_directories(
|
|
|
|
${catkin_INCLUDE_DIRS}
|
|
|
|
/usr/local/lib/
|
|
|
|
)
|
2018-11-22 17:48:30 +01:00
|
|
|
|
2018-11-22 19:48:11 +01:00
|
|
|
add_executable(wlanSignal src/wlanSignal.cpp)
|
2018-12-13 21:43:05 +01:00
|
|
|
target_link_libraries(wlanSignal ${catkin_LIBRARIES} wifi-scan)
|
|
|
|
add_dependencies(wlanSignal wlan_pioneer_generate_messages_cpp)
|
2018-12-15 15:21:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
SET(CMAKE_INSTALL_RPATH ${catkin_LIBRARIES})
|
|
|
|
SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
|
|
|
|
|
|
|
|
SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--disable-new-dtags")
|