mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-21 20:45:51 +03:00
b8879dbf07
Signed-off-by: Nicolas Fella <nicolas.fella@gmx.de>
29 lines
575 B
CMake
29 lines
575 B
CMake
if (APPLE)
|
|
add_subdirectory(MacOSX)
|
|
endif()
|
|
if(BUILD_SHELL_INTEGRATION_ICONS)
|
|
add_subdirectory(icons)
|
|
endif()
|
|
|
|
if( UNIX AND NOT APPLE )
|
|
if(BUILD_SHELL_INTEGRATION_NAUTILUS)
|
|
add_subdirectory(nautilus)
|
|
endif()
|
|
|
|
if(BUILD_SHELL_INTEGRATION_DOLPHIN)
|
|
find_package(KF5KIO "5.16")
|
|
if(KF5KIO_FOUND)
|
|
add_subdirectory(dolphin)
|
|
else()
|
|
message("Dolphin plugin disabled: KDE Frameworks 5.16 not found")
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
if(CLOUDPROVIDERS_FOUND)
|
|
add_subdirectory(libcloudproviders)
|
|
endif()
|
|
|
|
if(MSVC)
|
|
add_subdirectory(windows)
|
|
endif()
|