CMakeLists.txt 575 B

1234567891011121314151617181920212223242526272829
  1. if (APPLE)
  2. add_subdirectory(MacOSX)
  3. endif()
  4. if(BUILD_SHELL_INTEGRATION_ICONS)
  5. add_subdirectory(icons)
  6. endif()
  7. if( UNIX AND NOT APPLE )
  8. if(BUILD_SHELL_INTEGRATION_NAUTILUS)
  9. add_subdirectory(nautilus)
  10. endif()
  11. if(BUILD_SHELL_INTEGRATION_DOLPHIN)
  12. find_package(KF5KIO "5.16")
  13. if(KF5KIO_FOUND)
  14. add_subdirectory(dolphin)
  15. else()
  16. message("Dolphin plugin disabled: KDE Frameworks 5.16 not found")
  17. endif()
  18. endif()
  19. endif()
  20. if(CLOUDPROVIDERS_FOUND)
  21. add_subdirectory(libcloudproviders)
  22. endif()
  23. if(MSVC)
  24. add_subdirectory(windows)
  25. endif()