17 lines
520 B
CMake
17 lines
520 B
CMake
|
|
cmake_minimum_required(VERSION 2.8)
|
||
|
|
|
||
|
|
include_directories(${CMAKE_SOURCE_DIR}/inc)
|
||
|
|
include_directories(${MESA_SDK_PREFIX}/include)
|
||
|
|
include_directories(${MESA_SDK_PREFIX}/include/MESA)
|
||
|
|
|
||
|
|
|
||
|
|
add_definitions(-D_BSD_SOURCE -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H)
|
||
|
|
add_definitions(-fPIC -std=c++11)
|
||
|
|
LINK_DIRECTORIES(/opt/MESA/lib)
|
||
|
|
LINK_DIRECTORIES(${CMAKE_BINARY_DIR}/src)
|
||
|
|
|
||
|
|
add_executable(gtest_jump_layer gtest_jump_layer.cpp)
|
||
|
|
target_link_libraries(gtest_jump_layer pcap gtest-static MESA_jump_layer)
|
||
|
|
|
||
|
|
|