| 1234567891011121314151617181920212223242526272829 |
- 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()
|