mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
47 lines
748 B
CMake
47 lines
748 B
CMake
project(nfm)
|
|
|
|
set(nfm_SOURCES
|
|
nfmdemod.cpp
|
|
nfmdemodgui.cpp
|
|
nfmplugin.cpp
|
|
)
|
|
|
|
set(nfm_HEADERS
|
|
nfmdemod.h
|
|
nfmdemodgui.h
|
|
nfmplugin.h
|
|
)
|
|
|
|
set(nfm_FORMS
|
|
nfmdemodgui.ui
|
|
)
|
|
|
|
include_directories(
|
|
.
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_SOURCE_DIR}/include
|
|
${CMAKE_SOURCE_DIR}/include-gpl
|
|
${OPENGL_INCLUDE_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(nfm_FORMS_HEADERS ${nfm_FORMS})
|
|
|
|
add_library(demodnfm SHARED
|
|
${nfm_SOURCES}
|
|
${nfm_HEADERS_MOC}
|
|
${nfm_FORMS_HEADERS}
|
|
)
|
|
|
|
target_link_libraries(demodnfm
|
|
${QT_LIBRARIES}
|
|
${OPENGL_LIBRARIES}
|
|
sdrbase
|
|
)
|
|
|
|
qt5_use_modules(demodnfm Core Widgets OpenGL Multimedia) |