2019-09-13 01:07:22 +08:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}")
|
|
|
|
|
|
|
|
#Basic setup
|
|
|
|
include(qt_port_hashes)
|
2019-09-24 05:47:08 +08:00
|
|
|
if(QT_BUILD_LATEST) # only set in qt5-base
|
|
|
|
include(qt_port_hashes_latest)
|
|
|
|
elseif(NOT PORT STREQUAL "qt5-base")
|
|
|
|
include(qt_port_hashes_latest OPTIONAL) # will only be available for the other qt ports if qt5-base was build with latest
|
|
|
|
endif()
|
2019-09-13 01:07:22 +08:00
|
|
|
#Fixup scripts
|
|
|
|
include(qt_fix_makefile_install)
|
|
|
|
include(qt_fix_cmake)
|
|
|
|
include(qt_fix_prl)
|
|
|
|
#Helper functions
|
|
|
|
include(qt_download_submodule)
|
|
|
|
include(qt_build_submodule)
|
|
|
|
include(qt_install_copyright)
|
|
|
|
|
|
|
|
include(qt_submodule_installation)
|