mirror of
https://github.com/radio95-rnt/rds95.git
synced 2026-02-26 12:32:05 +01:00
14 lines
372 B
CMake
14 lines
372 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
project(rds95 VERSION 1.4)
|
|
|
|
add_compile_options(-Wall -Werror -Wextra -pedantic -O2 -std=c18 -march=native -DVERSION=\"${PROJECT_VERSION}\")
|
|
|
|
file(GLOB SOURCES src/*.c)
|
|
|
|
add_executable(rds95 ${SOURCES})
|
|
|
|
target_link_libraries(rds95 PRIVATE m pthread pulse pulse-simple)
|
|
|
|
install(TARGETS rds95 DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
|