You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
254 B
CMake
12 lines
254 B
CMake
3 years ago
|
cmake_minimum_required(VERSION 3.0.0)
|
||
|
project(rfmon-to-influx VERSION 0.1.0)
|
||
|
|
||
|
include(CTest)
|
||
|
enable_testing()
|
||
|
|
||
|
add_executable(rfmon-to-influx main.cpp)
|
||
|
|
||
|
set(CPACK_PROJECT_NAME ${PROJECT_NAME})
|
||
|
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
|
||
|
include(CPack)
|