mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 17:18:59 +08:00
14 lines
483 B
CMake
14 lines
483 B
CMake
include("${CURRENT_INSTALLED_DIR}/share/qt5/qt_port_functions.cmake")
|
|
|
|
if("d3d12" IN_LIST FEATURES)
|
|
list(APPEND CORE_OPTIONS -d3d12)
|
|
else()
|
|
list(APPEND CORE_OPTIONS -no-d3d12)
|
|
endif()
|
|
|
|
qt_submodule_installation(OUT_SOURCE_PATH SOURCE_PATH BUILD_OPTIONS ${CORE_OPTIONS})
|
|
|
|
if(NOT QT_UPDATE_VERSION)
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/qt5/QtQml/${QT_MAJOR_MINOR_VER}.${QT_PATCH_VER}/QtQml/private/qqmljsparser_p.h" "${SOURCE_PATH}" "")
|
|
endif()
|