forked from f4exb/sdrangel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Android SDR Driver sample source.
- Loading branch information
Showing
31 changed files
with
4,725 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
project(androidsdrdriverinput) | ||
|
||
set(androidsdrdriverinput_SOURCES | ||
androidsdrdriverinputtcphandler.cpp | ||
androidsdrdriverinput.cpp | ||
androidsdrdriverinputsettings.cpp | ||
androidsdrdriverinputwebapiadapter.cpp | ||
androidsdrdriverinputplugin.cpp | ||
) | ||
|
||
set(androidsdrdriverinput_HEADERS | ||
androidsdrdriverinputtcphandler.h | ||
androidsdrdriverinput.h | ||
androidsdrdriverinputsettings.h | ||
androidsdrdriverinputwebapiadapter.h | ||
androidsdrdriverinputplugin.h | ||
) | ||
|
||
include_directories( | ||
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client | ||
) | ||
|
||
if(NOT SERVER_MODE) | ||
set(androidsdrdriverinput_SOURCES | ||
${androidsdrdriverinput_SOURCES} | ||
androidsdrdriverinputgui.cpp | ||
androidsdrdriverinputgui.ui | ||
) | ||
set(androidsdrdriverinput_HEADERS | ||
${androidsdrdriverinput_HEADERS} | ||
androidsdrdriverinputgui.h | ||
) | ||
|
||
set(TARGET_NAME inputandroidsdrdriverinput) | ||
set(TARGET_LIB "Qt::Widgets") | ||
set(TARGET_LIB_GUI "sdrgui") | ||
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR}) | ||
else() | ||
set(TARGET_NAME inputandroidsdrdriverinputsrv) | ||
set(TARGET_LIB "") | ||
set(TARGET_LIB_GUI "") | ||
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR}) | ||
endif() | ||
|
||
add_library(${TARGET_NAME} SHARED | ||
${androidsdrdriverinput_SOURCES} | ||
) | ||
|
||
target_link_libraries(${TARGET_NAME} | ||
Qt::Core | ||
${TARGET_LIB} | ||
sdrbase | ||
${TARGET_LIB_GUI} | ||
swagger | ||
) | ||
if(NOT ENABLE_QT6 AND ANDROID) | ||
target_link_libraries(${TARGET_NAME} Qt::AndroidExtras) | ||
endif() | ||
|
||
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.