2015-09-04 02:10:38 +00:00
|
|
|
project(fcdproplus)
|
|
|
|
|
2017-12-14 20:03:11 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
|
|
|
|
2015-09-04 02:10:38 +00:00
|
|
|
set(fcdproplus_SOURCES
|
|
|
|
fcdproplusgui.cpp
|
|
|
|
fcdproplusinput.cpp
|
|
|
|
fcdproplusplugin.cpp
|
2015-10-01 01:37:53 +00:00
|
|
|
fcdproplussettings.cpp
|
2015-09-04 02:10:38 +00:00
|
|
|
fcdproplusthread.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(fcdproplus_HEADERS
|
|
|
|
fcdproplusgui.h
|
|
|
|
fcdproplusinput.h
|
|
|
|
fcdproplusplugin.h
|
2015-10-01 01:37:53 +00:00
|
|
|
fcdproplussettings.h
|
2015-09-04 02:10:38 +00:00
|
|
|
fcdproplusthread.h
|
|
|
|
)
|
|
|
|
|
|
|
|
set(fcdproplus_FORMS
|
|
|
|
fcdproplusgui.ui
|
|
|
|
)
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
.
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
2017-12-14 20:03:11 +00:00
|
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
2015-09-04 02:10:38 +00:00
|
|
|
${CMAKE_SOURCE_DIR}/fcdhid
|
2015-09-05 03:50:29 +00:00
|
|
|
${CMAKE_SOURCE_DIR}/fcdlib
|
2015-09-04 02:10:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
#include(${QT_USE_FILE})
|
|
|
|
add_definitions(${QT_DEFINITIONS})
|
|
|
|
add_definitions(-DQT_PLUGIN)
|
|
|
|
add_definitions(-DQT_SHARED)
|
|
|
|
|
|
|
|
#qt4_wrap_cpp(fcdproplus_HEADERS_MOC ${fcdproplus_HEADERS})
|
|
|
|
qt5_wrap_ui(fcdproplus_FORMS_HEADERS ${fcdproplus_FORMS})
|
|
|
|
|
|
|
|
add_library(inputfcdproplus SHARED
|
|
|
|
${fcdproplus_SOURCES}
|
|
|
|
${fcdproplus_HEADERS_MOC}
|
|
|
|
${fcdproplus_FORMS_HEADERS}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(inputfcdproplus
|
|
|
|
${QT_LIBRARIES}
|
|
|
|
asound
|
|
|
|
fcdhid
|
2015-09-05 03:50:29 +00:00
|
|
|
fcdlib
|
2015-09-04 02:10:38 +00:00
|
|
|
sdrbase
|
2017-10-22 17:12:43 +00:00
|
|
|
sdrgui
|
2017-12-14 20:03:11 +00:00
|
|
|
swagger
|
2015-09-04 02:10:38 +00:00
|
|
|
)
|
|
|
|
|
2018-06-12 22:20:51 +00:00
|
|
|
target_link_libraries(inputfcdproplus Qt5::Core Qt5::Widgets)
|
2016-02-24 10:51:36 +00:00
|
|
|
|
|
|
|
install(TARGETS inputfcdproplus DESTINATION lib/plugins/samplesource)
|