-
Notifications
You must be signed in to change notification settings - Fork 447
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1814 from srcejon/psk31_mod
Add PSK31 modulator
- Loading branch information
Showing
58 changed files
with
7,009 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
project(modpsk31) | ||
|
||
set(modpsk31_SOURCES | ||
psk31mod.cpp | ||
psk31modbaseband.cpp | ||
psk31modsource.cpp | ||
psk31modplugin.cpp | ||
psk31modsettings.cpp | ||
psk31modwebapiadapter.cpp | ||
) | ||
|
||
set(modpsk31_HEADERS | ||
psk31mod.h | ||
psk31modbaseband.h | ||
psk31modsource.h | ||
psk31modplugin.h | ||
psk31modsettings.h | ||
psk31modwebapiadapter.h | ||
) | ||
|
||
include_directories( | ||
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client | ||
) | ||
|
||
if(NOT SERVER_MODE) | ||
set(modpsk31_SOURCES | ||
${modpsk31_SOURCES} | ||
psk31modgui.cpp | ||
psk31modgui.ui | ||
psk31modrepeatdialog.cpp | ||
psk31modrepeatdialog.ui | ||
psk31modtxsettingsdialog.cpp | ||
psk31modtxsettingsdialog.ui | ||
) | ||
set(modpsk31_HEADERS | ||
${modpsk31_HEADERS} | ||
psk31modgui.h | ||
psk31modrepeatdialog.h | ||
psk31modtxsettingsdialog.h | ||
) | ||
set(TARGET_NAME modpsk31) | ||
set(TARGET_LIB "Qt::Widgets") | ||
set(TARGET_LIB_GUI "sdrgui") | ||
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR}) | ||
else() | ||
set(TARGET_NAME modpsk31srv) | ||
set(TARGET_LIB "") | ||
set(TARGET_LIB_GUI "") | ||
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR}) | ||
endif() | ||
|
||
add_library(${TARGET_NAME} SHARED | ||
${modpsk31_SOURCES} | ||
) | ||
|
||
target_link_libraries(${TARGET_NAME} | ||
Qt::Core | ||
${TARGET_LIB} | ||
sdrbase | ||
${TARGET_LIB_GUI} | ||
swagger | ||
) | ||
|
||
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER}) | ||
|
||
# Install debug symbols | ||
if (WIN32) | ||
install(FILES $<TARGET_PDB_FILE:${TARGET_NAME}> CONFIGURATIONS Debug RelWithDebInfo DESTINATION ${INSTALL_FOLDER} ) | ||
endif() |
Oops, something went wrong.