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
committed by f4exb
parent 34cf612031
commit 7edc1314aa
135 changed files with 282 additions and 265 deletions
@@ -34,12 +34,12 @@ if(NOT SERVER_MODE)
bladerf2inputgui.h
)
set(TARGET_NAME inputbladerf2)
set(TARGET_NAME ${PLUGINS_PREFIX}inputbladerf2)
set(TARGET_LIB "Qt::Widgets")
set(TARGET_LIB_GUI "sdrgui")
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
else()
set(TARGET_NAME inputbladerf2srv)
set(TARGET_NAME ${PLUGINSSRV_PREFIX}inputbladerf2srv)
set(TARGET_LIB "")
set(TARGET_LIB_GUI "")
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})