vcpkg/ports/qt5-base/cmake/qt_port_functions.cmake
Alexander Neumann 7ca4891fa4 [Qt] feature latest to build 5.13.1 (#8212)
* Introduce latest feature to build Qt 5.13.1
2019-09-23 14:47:08 -07:00

20 lines
598 B
CMake

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}")
#Basic setup
include(qt_port_hashes)
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()
#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)