13 lines
438 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.13)
project(weather_sat_decoder)
file(GLOB_RECURSE SRC "src/*.cpp" "src/*.c")
add_library(weather_sat_decoder SHARED ${SRC})
target_link_libraries(weather_sat_decoder PRIVATE sdrpp_core)
set_target_properties(weather_sat_decoder PROPERTIES PREFIX "")
2021-10-04 03:31:13 +02:00
target_include_directories(weather_sat_decoder PRIVATE "src/")
# Install directives
install(TARGETS weather_sat_decoder DESTINATION lib/sdrpp/plugins)