qt_port_functions.cmake 598 B

12345678910111213141516171819
  1. list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}")
  2. #Basic setup
  3. include(qt_port_hashes)
  4. if(QT_BUILD_LATEST) # only set in qt5-base
  5. include(qt_port_hashes_latest)
  6. elseif(NOT PORT STREQUAL "qt5-base")
  7. include(qt_port_hashes_latest OPTIONAL) # will only be available for the other qt ports if qt5-base was build with latest
  8. endif()
  9. #Fixup scripts
  10. include(qt_fix_makefile_install)
  11. include(qt_fix_cmake)
  12. include(qt_fix_prl)
  13. #Helper functions
  14. include(qt_download_submodule)
  15. include(qt_build_submodule)
  16. include(qt_install_copyright)
  17. include(qt_submodule_installation)