1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-07 17:16:02 -05:00
sdrangel/devices/perseus/CMakeLists.txt
2019-05-21 20:19:30 +02:00

30 lines
519 B
CMake

project(perseusdevice)
set(perseusdevice_SOURCES
deviceperseus.cpp
deviceperseusscan.cpp
)
set(perseusdevice_HEADERS
deviceperseus.h
deviceperseusscan.h
)
include_directories(
${LIBPERSEUS_INCLUDE_DIR}
)
add_library(perseusdevice SHARED
${perseusdevice_SOURCES}
)
set_target_properties(perseusdevice
PROPERTIES DEFINE_SYMBOL "devices_EXPORTS")
target_link_libraries(perseusdevice
${LIBPERSEUS_LIBRARIES}
sdrbase
)
install(TARGETS perseusdevice DESTINATION ${INSTALL_LIB_DIR})