2015-11-21 14:14:20 +03:00
|
|
|
if (APPLE)
|
|
|
|
add_subdirectory(MacOSX)
|
|
|
|
endif()
|
2017-09-22 11:32:38 +03:00
|
|
|
if(BUILD_SHELL_INTEGRATION_ICONS)
|
|
|
|
add_subdirectory(icons)
|
|
|
|
endif()
|
2014-08-01 17:30:13 +04:00
|
|
|
|
2014-08-04 20:58:35 +04:00
|
|
|
if( UNIX AND NOT APPLE )
|
2017-09-22 11:32:38 +03:00
|
|
|
if(BUILD_SHELL_INTEGRATION_NAUTILUS)
|
|
|
|
add_subdirectory(nautilus)
|
|
|
|
endif()
|
2014-08-04 20:58:35 +04:00
|
|
|
|
2017-09-22 11:32:38 +03:00
|
|
|
if(BUILD_SHELL_INTEGRATION_DOLPHIN)
|
2021-04-12 18:38:11 +03:00
|
|
|
find_package(KF5KIO "5.16")
|
|
|
|
if(KF5KIO_FOUND)
|
2017-09-22 11:32:38 +03:00
|
|
|
add_subdirectory(dolphin)
|
|
|
|
else()
|
|
|
|
message("Dolphin plugin disabled: KDE Frameworks 5.16 not found")
|
|
|
|
endif()
|
2015-11-21 14:14:20 +03:00
|
|
|
endif()
|
2021-04-12 18:25:42 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CLOUDPROVIDERS_FOUND)
|
2017-07-23 21:58:00 +03:00
|
|
|
add_subdirectory(libcloudproviders)
|
2015-11-21 14:14:20 +03:00
|
|
|
endif()
|
2017-07-23 21:58:00 +03:00
|
|
|
|
2018-01-04 22:51:12 +03:00
|
|
|
if(MSVC)
|
|
|
|
add_subdirectory(windows)
|
|
|
|
endif()
|