1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-11-18 22:23:17 -05:00
sdrangel/devices/perseus/CMakeLists.txt

30 lines
519 B
CMake
Raw Normal View History

2018-02-06 18:49:22 +01:00
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")
2018-12-02 03:06:04 +01:00
2018-02-06 18:49:22 +01:00
target_link_libraries(perseusdevice
${LIBPERSEUS_LIBRARIES}
sdrbase
)
install(TARGETS perseusdevice DESTINATION ${INSTALL_LIB_DIR})