2015-09-09 07:13:24 +00:00
|
|
|
project(airspy)
|
|
|
|
|
|
|
|
set(airspy_SOURCES
|
2016-10-25 22:57:46 +00:00
|
|
|
airspygui.cpp
|
|
|
|
airspyinput.cpp
|
|
|
|
airspyplugin.cpp
|
|
|
|
airspysettings.cpp
|
|
|
|
airspythread.cpp
|
2015-09-09 07:13:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(airspy_HEADERS
|
2016-10-25 22:57:46 +00:00
|
|
|
airspygui.h
|
|
|
|
airspyinput.h
|
|
|
|
airspyplugin.h
|
|
|
|
airspysettings.h
|
|
|
|
airspythread.h
|
2015-09-09 07:13:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(airspy_FORMS
|
2016-10-25 22:57:46 +00:00
|
|
|
airspygui.ui
|
2015-09-09 07:13:24 +00:00
|
|
|
)
|
|
|
|
|
2016-10-25 22:57:46 +00:00
|
|
|
if (BUILD_DEBIAN)
|
2015-09-09 07:13:24 +00:00
|
|
|
include_directories(
|
2016-10-25 22:57:46 +00:00
|
|
|
.
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
2016-10-26 00:40:00 +00:00
|
|
|
${LIBAIRSPYSRC}
|
|
|
|
${LIBAIRSPYSRC}/libairspy/src
|
2015-09-09 07:13:24 +00:00
|
|
|
)
|
2016-10-25 22:57:46 +00:00
|
|
|
else (BUILD_DEBIAN)
|
|
|
|
include_directories(
|
|
|
|
.
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${LIBAIRSPY_INCLUDE_DIR}
|
|
|
|
)
|
|
|
|
endif (BUILD_DEBIAN)
|
2015-09-09 07:13:24 +00:00
|
|
|
|
|
|
|
#include(${QT_USE_FILE})
|
2015-09-11 01:02:02 +00:00
|
|
|
#add_definitions(${QT_DEFINITIONS})
|
|
|
|
add_definitions("${QT_DEFINITIONS} -DLIBAIRSPY_DYN_RATES")
|
2015-09-09 07:13:24 +00:00
|
|
|
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
|
2016-10-25 22:57:46 +00:00
|
|
|
${airspy_SOURCES}
|
|
|
|
${airspy_HEADERS_MOC}
|
|
|
|
${airspy_FORMS_HEADERS}
|
2015-09-09 07:13:24 +00:00
|
|
|
)
|
|
|
|
|
2016-10-25 22:57:46 +00:00
|
|
|
if (BUILD_DEBIAN)
|
2015-09-09 07:13:24 +00:00
|
|
|
target_link_libraries(inputairspy
|
2016-10-25 22:57:46 +00:00
|
|
|
${QT_LIBRARIES}
|
|
|
|
airspy
|
|
|
|
sdrbase
|
2015-09-09 07:13:24 +00:00
|
|
|
)
|
2016-10-25 22:57:46 +00:00
|
|
|
else (BUILD_DEBIAN)
|
|
|
|
target_link_libraries(inputairspy
|
|
|
|
${QT_LIBRARIES}
|
|
|
|
${LIBAIRSPY_LIBRARIES}
|
|
|
|
sdrbase
|
|
|
|
)
|
|
|
|
endif (BUILD_DEBIAN)
|
|
|
|
|
2015-09-09 07:13:24 +00:00
|
|
|
|
2016-10-27 06:38:50 +00:00
|
|
|
qt5_use_modules(inputairspy Core Widgets)
|
2016-02-24 10:51:36 +00:00
|
|
|
|
|
|
|
install(TARGETS inputairspy DESTINATION lib/plugins/samplesource)
|