mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 00:14:11 +09:00
To simplify building external channels and other plugins related paths are now exported in the pkg-config file and the cmake package. The paths can be used to install channels/plugins/extensions in the configured search paths. For pkg-config the following variables are now available: * datadir * plugindir * proxy_plugindir * extensiondir They can be queried like: `pkg-config freerdp3 --variable plugindir` The cmake package has three new variables that can be used: * FreeRDP_PLUGIN_DIR * FreeRDP_PROXY_PLUGIN_DIR * FreeRDP_EXTENSION_DIR Note: Depending on the build the directories are not necessarily created.
21 lines
631 B
PkgConfig
21 lines
631 B
PkgConfig
prefix=@CMAKE_INSTALL_PREFIX@
|
|
exec_prefix=@CMAKE_INSTALL_PREFIX@
|
|
libdir=@CMAKE_INSTALL_FULL_LIBDIR@
|
|
includedir=${prefix}/@FREERDP_INCLUDE_DIR@
|
|
libs=-lfreerdp@FREERDP_API_VERSION@
|
|
datarootdir=${prefix}/share
|
|
datadir=${datarootdir}/@FREERDP_MAJOR_DIR@
|
|
plugindir=${libdir}/@FREERDP_MAJOR_DIR@
|
|
proxy_plugindir=${plugindir}/proxy
|
|
extensiondir=${plugindir}/extensions
|
|
|
|
Name: FreeRDP
|
|
Description: FreeRDP: A Remote Desktop Protocol Implementation
|
|
URL: http://www.freerdp.com/
|
|
Version: @FREERDP_VERSION@
|
|
Requires:
|
|
Requires.private: winpr@FREERDP_API_VERSION@
|
|
Libs: -L${libdir} ${libs}
|
|
Libs.private: -ldl -lpthread
|
|
Cflags: -I${includedir}
|