mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 16:01:14 -05:00
79 lines
1.5 KiB
CMake
79 lines
1.5 KiB
CMake
project(airspy)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
|
|
|
set(airspy_SOURCES
|
|
airspygui.cpp
|
|
airspyinput.cpp
|
|
airspyplugin.cpp
|
|
airspysettings.cpp
|
|
airspythread.cpp
|
|
)
|
|
|
|
set(airspy_HEADERS
|
|
airspygui.h
|
|
airspyinput.h
|
|
airspyplugin.h
|
|
airspysettings.h
|
|
airspythread.h
|
|
)
|
|
|
|
set(airspy_FORMS
|
|
airspygui.ui
|
|
)
|
|
|
|
if (BUILD_DEBIAN)
|
|
include_directories(
|
|
.
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
|
${LIBAIRSPYSRC}
|
|
${LIBAIRSPYSRC}/libairspy/src
|
|
)
|
|
else (BUILD_DEBIAN)
|
|
include_directories(
|
|
.
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
|
${LIBAIRSPY_INCLUDE_DIR}
|
|
)
|
|
endif (BUILD_DEBIAN)
|
|
|
|
#include(${QT_USE_FILE})
|
|
#add_definitions(${QT_DEFINITIONS})
|
|
add_definitions("${QT_DEFINITIONS} -DLIBAIRSPY_DYN_RATES")
|
|
add_definitions(-DQT_PLUGIN)
|
|
add_definitions(-DQT_SHARED)
|
|
|
|
#qt4_wrap_cpp(airspy_HEADERS_MOC ${airspy_HEADERS})
|
|
qt5_wrap_ui(airspy_FORMS_HEADERS ${airspy_FORMS})
|
|
|
|
add_library(inputairspy SHARED
|
|
${airspy_SOURCES}
|
|
${airspy_HEADERS_MOC}
|
|
${airspy_FORMS_HEADERS}
|
|
)
|
|
|
|
if (BUILD_DEBIAN)
|
|
target_link_libraries(inputairspy
|
|
${QT_LIBRARIES}
|
|
airspy
|
|
sdrbase
|
|
sdrgui
|
|
swagger
|
|
)
|
|
else (BUILD_DEBIAN)
|
|
target_link_libraries(inputairspy
|
|
${QT_LIBRARIES}
|
|
${LIBAIRSPY_LIBRARIES}
|
|
sdrbase
|
|
sdrgui
|
|
swagger
|
|
)
|
|
endif (BUILD_DEBIAN)
|
|
|
|
|
|
target_link_libraries(inputairspy Qt5::Core Qt5::Widgets)
|
|
|
|
install(TARGETS inputairspy DESTINATION lib/plugins/samplesource)
|