Brand name of vfs plugins

Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
This commit is contained in:
Felix Weilbach 2021-07-28 10:11:58 +02:00 committed by Matthieu Gallien (Rebase PR Action)
parent 43cccb0a73
commit 3d72e24bb8
3 changed files with 12 additions and 0 deletions

View file

@ -6,6 +6,10 @@ if (WIN32)
hydrationjob.cpp
vfs_cfapi.cpp
)
set_target_properties(nextcloudsync_vfs_cfapi
PROPERTIES
LIBRARY_OUTPUT_NAME ${APPLICATION_EXECUTABLE}sync_vfs_cfapi
)
target_link_libraries(nextcloudsync_vfs_cfapi PRIVATE
nextcloudsync

View file

@ -1,6 +1,10 @@
add_library(nextcloudsync_vfs_suffix SHARED
vfs_suffix.cpp
)
set_target_properties(nextcloudsync_vfs_suffix
PROPERTIES
LIBRARY_OUTPUT_NAME ${APPLICATION_EXECUTABLE}sync_vfs_suffix
)
target_link_libraries(nextcloudsync_vfs_suffix PRIVATE nextcloudsync)

View file

@ -7,6 +7,10 @@ if (LINUX)
add_library(nextcloudsync_vfs_xattr SHARED
${vfs_xattr_SRCS}
)
set_target_properties(nextcloudsync_vfs_xattr
PROPERTIES
LIBRARY_OUTPUT_NAME ${APPLICATION_EXECUTABLE}sync_vfs_xattr
)
target_link_libraries(nextcloudsync_vfs_xattr PRIVATE nextcloudsync)