mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 07:21:14 -05:00
60 lines
1.1 KiB
CMake
60 lines
1.1 KiB
CMake
project(fcdproplus)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
|
|
|
set(fcdproplus_SOURCES
|
|
fcdproplusgui.cpp
|
|
fcdproplusinput.cpp
|
|
fcdproplusplugin.cpp
|
|
fcdproplussettings.cpp
|
|
fcdproplusthread.cpp
|
|
)
|
|
|
|
set(fcdproplus_HEADERS
|
|
fcdproplusgui.h
|
|
fcdproplusinput.h
|
|
fcdproplusplugin.h
|
|
fcdproplussettings.h
|
|
fcdproplusthread.h
|
|
)
|
|
|
|
set(fcdproplus_FORMS
|
|
fcdproplusgui.ui
|
|
)
|
|
|
|
include_directories(
|
|
.
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
|
${CMAKE_SOURCE_DIR}/fcdhid
|
|
${CMAKE_SOURCE_DIR}/fcdlib
|
|
)
|
|
|
|
#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
|
|
fcdlib
|
|
sdrbase
|
|
sdrgui
|
|
swagger
|
|
)
|
|
|
|
target_link_libraries(inputfcdproplus Qt5::Core Qt5::Widgets)
|
|
|
|
install(TARGETS inputfcdproplus DESTINATION lib/plugins/samplesource)
|