mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
Vfs: Have a static list of potential plugins for now
Fixes in-source builds and other cases where more non-plugin directories are created in src/libsync/vfs.
This commit is contained in:
parent
75b9976526
commit
30294e0c9a
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,8 @@
|
|||
file(GLOB vfsPlugins RELATIVE ${CMAKE_CURRENT_LIST_DIR} "*")
|
||||
# Globbing for plugins has a problem with in-source builds
|
||||
# that create directories for the build.
|
||||
#file(GLOB vfsPlugins RELATIVE ${CMAKE_CURRENT_LIST_DIR} "*")
|
||||
|
||||
SET(vfsPlugins "suffix;win")
|
||||
|
||||
foreach(vfsPlugin ${vfsPlugins})
|
||||
if(NOT IS_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/${vfsPlugin}")
|
||||
|
|
Loading…
Reference in a new issue