mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
49 lines
815 B
CMake
49 lines
815 B
CMake
project(perseusdevice)
|
|
|
|
set (CMAKE_CXX_STANDARD 11)
|
|
|
|
set(perseusdevice_SOURCES
|
|
deviceperseus.cpp
|
|
deviceperseusscan.cpp
|
|
)
|
|
|
|
set(perseusdevice_HEADERS
|
|
deviceperseus.h
|
|
deviceperseusscan.h
|
|
)
|
|
|
|
if (BUILD_DEBIAN)
|
|
include_directories(
|
|
.
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${LIBPERSEUSSRC}
|
|
)
|
|
else (BUILD_DEBIAN)
|
|
include_directories(
|
|
.
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${LIBPERSEUS_INCLUDE_DIR}
|
|
)
|
|
endif (BUILD_DEBIAN)
|
|
|
|
#add_definitions(${QT_DEFINITIONS})
|
|
#add_definitions(-DQT_SHARED)
|
|
|
|
add_library(perseusdevice SHARED
|
|
${perseusdevice_SOURCES}
|
|
)
|
|
|
|
if (BUILD_DEBIAN)
|
|
target_link_libraries(perseusdevice
|
|
perseus
|
|
sdrbase
|
|
)
|
|
else (BUILD_DEBIAN)
|
|
target_link_libraries(perseusdevice
|
|
${LIBPERSEUS_LIBRARIES}
|
|
sdrbase
|
|
)
|
|
endif (BUILD_DEBIAN)
|
|
|
|
install(TARGETS perseusdevice DESTINATION lib)
|