mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 05:25:50 +03:00
Brand name of vfs plugins
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
This commit is contained in:
parent
43cccb0a73
commit
3d72e24bb8
3 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue