summaryrefslogtreecommitdiff
path: root/src/tools/operf/CMakeLists.txt
blob: 895d706c60e19f4c0dbb713c42b33b78093f4ddb (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
  operf.c
  )

add_executable(operf ${SOURCE_FILES})

target_link_libraries(operf LINK_PUBLIC ${LIBM_LIBRARIES} ouroboros-dev)

install(TARGETS operf RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})