summaryrefslogtreecommitdiff
path: root/src/tools/oping/CMakeLists.txt
blob: a8fc7d860f38cafd2d693ad75aa8349a11f96455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
include_directories(${CMAKE_CURRENT_BINARY_DIR})

include_directories(${CMAKE_SOURCE_DIR}/include)
include_directories(${CMAKE_BINARY_DIR}/include)

find_library(LIBM_LIBRARIES m)
if(NOT LIBM_LIBRARIES)
  message(FATAL_ERROR "libm not found")
endif()

set(SOURCE_FILES
        # Add source files here
        oping.c
)

add_executable(oping ${SOURCE_FILES})

target_link_libraries(oping LINK_PUBLIC ${LIBM_LIBRARIES} ouroboros)

install(TARGETS oping RUNTIME DESTINATION usr/bin)