blob: b63d24eef4db9dd9cd2fff100511d329df47e5b0 (
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)
install(TARGETS operf RUNTIME DESTINATION usr/bin)
|