2021-04-26 15:03:52 +00:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2021-04-10 01:06:59 +00:00
|
|
|
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 01:31:13 +00:00
|
|
|
target_include_directories(weather_sat_decoder PRIVATE "src/")
|
|
|
|
|
2021-04-10 01:06:59 +00:00
|
|
|
# Install directives
|
|
|
|
install(TARGETS weather_sat_decoder DESTINATION lib/sdrpp/plugins)
|