1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Append prefix to plugin name when running on Android.

Android libraries can't be placed inside subdirectory, so to
distinguish plugins from regular libraries the new prefix is used.
This commit is contained in:
DreamNik
2024-09-03 18:52:00 +03:00
parent f694ba04b8
commit 202fc96de6
135 changed files with 282 additions and 265 deletions
@@ -34,12 +34,12 @@ if(NOT SERVER_MODE)
hackrfinputgui.h
)
set(TARGET_NAME inputhackrf)
set(TARGET_NAME ${PLUGINS_PREFIX}inputhackrf)
set(TARGET_LIB "Qt::Widgets")
set(TARGET_LIB_GUI "sdrgui")
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
else()
set(TARGET_NAME inputhackrfsrv)
set(TARGET_NAME ${PLUGINSSRV_PREFIX}inputhackrfsrv)
set(TARGET_LIB "")
set(TARGET_LIB_GUI "")
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})