![Bernhard Miklautz](/assets/img/avatar_default.png)
The exported paths for * FreeRDP_PLUGIN_DIR * FreeRDP_PROXY_PLUGIN_DIR * FreeRDP_EXTENSION_DIR introduced in ddc9e5835ff879a7562447a0d62f3951c7dbb98e were relative to the installation of the cmake module because of the use of CMakePackageConfigHelpers. This could lead to different paths for configuration and runtime - causing channels not to be found and loaded. Instead of using paths relative to the cmake module set the paths configured during configure/compile for plugins and extension. This way the exported paths match the paths in build-config.h and are the same used in the pkg-config variables.
17 lines
627 B
CMake
17 lines
627 B
CMake
|
|
@PACKAGE_INIT@
|
|
|
|
set(FreeRDP_VERSION_MAJOR "@FREERDP_VERSION_MAJOR@")
|
|
set(FreeRDP_VERSION_MINOR "@FREERDP_VERSION_MINOR@")
|
|
set(FreeRDP_VERSION_REVISION "@FREERDP_VERSION_REVISION@")
|
|
|
|
set_and_check(FreeRDP_INCLUDE_DIR "@PACKAGE_FREERDP_INCLUDE_DIR@")
|
|
|
|
set(FreeRDP_INSTALL_PREFIX "@FREERDP_INSTALL_PREFIX@")
|
|
set(FreeRDP_RELATIVE_PLUGIN_DIR "@FREERDP_PLUGIN_PATH@")
|
|
set(FreeRDP_PLUGIN_DIR "${FreeRDP_INSTALL_PREFIX}/${FreeRDP_RELATIVE_PLUGIN_DIR}")
|
|
set(FreeRDP_PROXY_PLUGIN_DIR "${FreeRDP_PLUGIN_DIR}/proxy")
|
|
set(FreeRDP_EXTENSION_DIR "${FreeRDP_PLUGIN_DIR}/extensions")
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/FreeRDPTargets.cmake")
|