vcpkg/ports/qtimageformats/portfile.cmake
Alexander Neumann 147027390b
[Qt6] update to 6.2.4 (#23691)
* [Qt6] update to 6.2.4

* adjust patches

* more fixes

* more CMAKE_REQUIRE_FIND_PACKAGE

* fix configure?

* cannot require cmake not config stuff.

* more REQUIRE removals

* adjust required stuff

* more modules.

* less require stuff

* disable env patch for now and silent the require maybe unused. warnings

* different approach

* fix case ?

* fix linux builds

* more stuff to not force in vcpkg

* reenable env patch

* only use env patch on windows.

* reenable qtwebengine. Maybe the ICE was fixed?

* Revert "reenable qtwebengine. Maybe the ICE was fixed?"

This reverts commit 5dc3ca88c1.

* version stuff

Co-authored-by: Alexander Neumann <you@example.com>
2022-03-23 12:19:54 -07:00

41 lines
1.4 KiB
CMake

set(VCPKG_POLICY_EMPTY_INCLUDE_FOLDER enabled) # Only plugins
set(SCRIPT_PATH "${CURRENT_INSTALLED_DIR}/share/qtbase")
include("${SCRIPT_PATH}/qt_install_submodule.cmake")
set(${PORT}_PATCHES no_target_promotion.patch)
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
#"jasper" CMAKE_REQUIRE_FIND_PACKAGE_WrapJasper
#"webp" CMAKE_REQUIRE_FIND_PACKAGE_WrapWebP
#"tiff" CMAKE_REQUIRE_FIND_PACKAGE_TIFF
INVERTED_FEATURES
"jasper" CMAKE_DISABLE_FIND_PACKAGE_WrapJasper
"webp" CMAKE_DISABLE_FIND_PACKAGE_WrapWebP
"tiff" CMAKE_DISABLE_FIND_PACKAGE_TIFF
)
if("jasper" IN_LIST FEATURES)
list(APPEND FEATURE_OPTIONS -DINPUT_jasper=system)
else()
list(APPEND FEATURE_OPTIONS -DINPUT_jasper=no)
endif()
if("webp" IN_LIST FEATURES)
list(APPEND FEATURE_OPTIONS -DINPUT_webp=system)
else()
list(APPEND FEATURE_OPTIONS -DINPUT_webp=no)
endif()
if("tiff" IN_LIST FEATURES)
list(APPEND FEATURE_OPTIONS -DINPUT_tiff=system)
else()
list(APPEND FEATURE_OPTIONS -DINPUT_tiff=no)
endif()
list(APPEND FEATURE_OPTIONS -DINPUT_mng=no) # marked as FIXME
qt_install_submodule(PATCHES ${${PORT}_PATCHES}
CONFIGURE_OPTIONS
${FEATURE_OPTIONS}
CONFIGURE_OPTIONS_RELEASE
CONFIGURE_OPTIONS_DEBUG
)