mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
36 lines
533 B
CMake
36 lines
533 B
CMake
project(chanalyzer)
|
|
|
|
set(chanalyzer_SOURCES
|
|
chanalyzer.cpp
|
|
chanalyzergui.cpp
|
|
chanalyzerplugin.cpp
|
|
chanalyzersettings.cpp
|
|
|
|
chanalyzergui.ui
|
|
)
|
|
|
|
set(chanalyzer_HEADERS
|
|
chanalyzer.h
|
|
chanalyzergui.h
|
|
chanalyzerplugin.h
|
|
chanalyzersettings.h
|
|
)
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${Boost_INCLUDE_DIRS}
|
|
)
|
|
|
|
add_library(chanalyzer SHARED
|
|
${chanalyzer_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(chanalyzer
|
|
Qt5::Core
|
|
Qt5::Widgets
|
|
sdrbase
|
|
sdrgui
|
|
)
|
|
|
|
install(TARGETS chanalyzer DESTINATION ${INSTALL_PLUGINS_DIR})
|