mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-15 21:01:45 -05:00
Package SoapySDR modules
This commit is contained in:
parent
556ddaaff6
commit
88ef866edb
1
external/CMakeLists.txt
vendored
1
external/CMakeLists.txt
vendored
@ -602,6 +602,7 @@ if (WIN32 OR APPLE)
|
||||
set(SOAPYSDR_INCLUDE_DIR "${source_dir}/include" CACHE INTERNAL "")
|
||||
if (WIN32)
|
||||
install(FILES "${SDRANGEL_BINARY_BIN_DIR}/SoapySDR${CMAKE_SHARED_LIBRARY_SUFFIX}" DESTINATION "${INSTALL_LIB_DIR}")
|
||||
install(DIRECTORY "${SDRANGEL_BINARY_LIB_DIR}/SoapySDR" DESTINATION "${INSTALL_LIB_DIR}/lib")
|
||||
elseif (APPLE)
|
||||
set(SOAPYSDR_LIBRARY "${binary_dir}/lib/libSoapySDR${CMAKE_SHARED_LIBRARY_SUFFIX}" CACHE INTERNAL "")
|
||||
install(DIRECTORY "${binary_dir}/lib/" DESTINATION "${INSTALL_LIB_DIR}"
|
||||
|
@ -76,6 +76,10 @@ void PluginManager::loadPluginsPart(const QString& pluginsSubDir)
|
||||
PluginsPath << applicationDirPath + "/../Resources/lib/" + pluginsSubDir;
|
||||
#elif defined(_WIN32) || defined(WIN32)
|
||||
PluginsPath << applicationDirPath + "/" + pluginsSubDir;
|
||||
// Give SoapySDR hint about modules location.
|
||||
// By default it searches in `$applicationDir/../lib/SoapySDR/`, which on Windows
|
||||
// is incorrect as both `bin` and `lib` dir are set to root application dir.
|
||||
qputenv("SOAPY_SDR_ROOT", applicationDirPath.toLocal8Bit());
|
||||
#endif
|
||||
|
||||
// NOTE: exit on the first folder found
|
||||
|
Loading…
Reference in New Issue
Block a user