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
diff options
context:
space:
mode:
authorHannah von Reth <vonreth@kde.org>2022-05-11 09:54:47 +0300
committerHannah von Reth <vonreth@kde.org>2022-05-11 09:55:57 +0300
commitb45e9bb24dfe8d8433badd818d339b091ad6db8d (patch)
tree9f04d6714f2a9d4bb4e983ac49b6e4160799e8e1 /src/plugins
parent9cd14166b2a587f47f7b65eb445554831f6b4c4f (diff)
Fix plugin build dir
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/vfs/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/vfs/CMakeLists.txt b/src/plugins/vfs/CMakeLists.txt
index 1cbb6b371..6a2935120 100644
--- a/src/plugins/vfs/CMakeLists.txt
+++ b/src/plugins/vfs/CMakeLists.txt
@@ -11,7 +11,7 @@ foreach(vfsPlugin ${VIRTUAL_FILE_SYSTEM_PLUGINS})
if (NOT IS_ABSOLUTE ${vfsPlugin})
set(vfsPluginPath "${CMAKE_CURRENT_LIST_DIR}/${vfsPlugin}")
else()
- get_filename_component(vfsPluginPathOut ${vfsPluginPath} DIRECTORY)
+ set(vfsPluginPathOut ${PROJECT_BINARY_DIR}/plugins/${vfsPluginName})
endif()
if(NOT IS_DIRECTORY ${vfsPluginPath})
continue()