2015-05-11 20:53:35 -04:00
|
|
|
project(am)
|
|
|
|
|
|
|
|
set(am_SOURCES
|
|
|
|
amdemod.cpp
|
|
|
|
amdemodgui.cpp
|
2017-09-26 17:19:49 -04:00
|
|
|
amdemodsettings.cpp
|
2016-10-19 17:51:59 -04:00
|
|
|
amdemodplugin.cpp
|
2015-05-11 20:53:35 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
set(am_HEADERS
|
|
|
|
amdemod.h
|
|
|
|
amdemodgui.h
|
2017-09-26 17:19:49 -04:00
|
|
|
amdemodsettings.h
|
2016-10-19 17:51:59 -04:00
|
|
|
amdemodplugin.h
|
2015-05-11 20:53:35 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
set(am_FORMS
|
|
|
|
amdemodgui.ui
|
|
|
|
)
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
.
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
)
|
|
|
|
|
|
|
|
#include(${QT_USE_FILE})
|
|
|
|
add_definitions(${QT_DEFINITIONS})
|
|
|
|
add_definitions(-DQT_PLUGIN)
|
|
|
|
add_definitions(-DQT_SHARED)
|
|
|
|
|
|
|
|
#qt5_wrap_cpp(nfm_HEADERS_MOC ${nfm_HEADERS})
|
|
|
|
qt5_wrap_ui(am_FORMS_HEADERS ${am_FORMS})
|
|
|
|
|
|
|
|
add_library(demodam SHARED
|
|
|
|
${am_SOURCES}
|
|
|
|
${am_HEADERS_MOC}
|
|
|
|
${am_FORMS_HEADERS}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(demodam
|
|
|
|
${QT_LIBRARIES}
|
|
|
|
sdrbase
|
2017-10-22 13:12:43 -04:00
|
|
|
sdrgui
|
2015-05-11 20:53:35 -04:00
|
|
|
)
|
|
|
|
|
2016-10-27 02:46:06 -04:00
|
|
|
qt5_use_modules(demodam Core Widgets)
|
2016-02-24 05:51:36 -05:00
|
|
|
|
2016-10-02 07:18:07 -04:00
|
|
|
install(TARGETS demodam DESTINATION lib/plugins/channelrx)
|