13 lines
404 B
CMake
Raw Normal View History

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