Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2015-12-02 15:12:54 +0300
committerOlivier Goffart <ogoffart@woboq.com>2015-12-02 15:13:41 +0300
commit685f2a259fea2ae2bafd4c614089174fad332366 (patch)
tree4c762eac8265274f9b313fc52a60fcfb4296bfde /cmake
parent4a2b5f7cc88f73817427632c4a2af9110e918ef0 (diff)
csync: remove PLUGIN install patch from cmake files
This conflicts with the KDE_INSTALL_PLUGINDIR and prevent the dolphin plugin to be installed at the right location. Since csync no longer have plugin, this can be removed
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/DefineInstallationPaths.cmake5
1 files changed, 0 insertions, 5 deletions
diff --git a/cmake/modules/DefineInstallationPaths.cmake b/cmake/modules/DefineInstallationPaths.cmake
index 3f44af6c0..fafad83c1 100644
--- a/cmake/modules/DefineInstallationPaths.cmake
+++ b/cmake/modules/DefineInstallationPaths.cmake
@@ -41,10 +41,6 @@ if (UNIX)
"${LIB_INSTALL_DIR}"
CACHE PATH "The subdirectory relative to the install prefix where private libs are installed"
)
- SET(PLUGIN_INSTALL_DIR
- "${LIB_INSTALL_DIR}"
- CACHE PATH "The subdirectory relative to the install prefix where plugins will be installed (default is prefix/lib/${APPLICATION_SHORTNAME})"
- )
SET(INCLUDE_INSTALL_DIR
"${CMAKE_INSTALL_PREFIX}/include"
CACHE PATH "The subdirectory to the header prefix (default prefix/include)"
@@ -106,7 +102,6 @@ if (WIN32)
set(SBIN_INSTALL_DIR "." CACHE PATH "-")
set(LIB_INSTALL_DIR "lib" CACHE PATH "-")
set(INCLUDE_INSTALL_DIR "include" CACHE PATH "-")
- set(PLUGIN_INSTALL_DIR "plugins" CACHE PATH "-")
set(HTML_INSTALL_DIR "doc/HTML" CACHE PATH "-")
set(ICON_INSTALL_DIR "." CACHE PATH "-")
set(SOUND_INSTALL_DIR "." CACHE PATH "-")