aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/xerces-c/portfile.cmake
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/xerces-c/portfile.cmake
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/xerces-c/portfile.cmake')
-rw-r--r--vcpkg/ports/xerces-c/portfile.cmake82
1 files changed, 82 insertions, 0 deletions
diff --git a/vcpkg/ports/xerces-c/portfile.cmake b/vcpkg/ports/xerces-c/portfile.cmake
new file mode 100644
index 0000000..f9c9932
--- /dev/null
+++ b/vcpkg/ports/xerces-c/portfile.cmake
@@ -0,0 +1,82 @@
+vcpkg_minimum_required(VERSION 2022-10-12) # for ${VERSION}
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO apache/xerces-c
+ REF "v${VERSION}"
+ SHA512 228f7b35ca219a2d5202b853983fd2941325413724f9cfbb8d0056bb81669c4530a792323f60736e4f6bf2c4f289fab21d6e2107e9ba65438437ae19b374b4a8
+ HEAD_REF master
+ PATCHES
+ dependencies.patch
+ disable-tests.patch
+ remove-dll-export-macro.patch
+)
+file(REMOVE "${SOURCE_PATH}/cmake/FindICU.cmake")
+
+vcpkg_check_features(
+ OUT_FEATURE_OPTIONS options
+ FEATURES
+ icu CMAKE_REQUIRE_FIND_PACKAGE_ICU
+ network network
+ INVERTED_FEATURES
+ icu CMAKE_DISABLE_FIND_PACKAGE_ICU
+)
+if("icu" IN_LIST FEATURES)
+ vcpkg_list(APPEND options -Dtranscoder=icu)
+elseif(VCPKG_TARGET_IS_WINDOWS)
+ vcpkg_list(APPEND options -Dtranscoder=windows)
+elseif(VCPKG_TARGET_IS_OSX)
+ vcpkg_list(APPEND options -Dtranscoder=macosunicodeconverter)
+elseif(VCPKG_HOST_IS_OSX)
+ # Because of a bug in the transcoder selection script, the option
+ # "macosunicodeconverter" is always selected when building on macOS,
+ # regardless of the target platform. This breaks cross-compiling.
+ # As a workaround we force "iconv", which should at least work for iOS.
+ # Upstream fix: https://github.com/apache/xerces-c/pull/52
+ vcpkg_list(APPEND options -Dtranscoder=iconv)
+else()
+ # xercesc chooses gnuiconv or iconv (cmake/XercesTranscoderSelection.cmake)
+endif()
+if("xmlch-wchar" IN_LIST FEATURES)
+ vcpkg_list(APPEND options -Dxmlch-type=wchar_t)
+endif()
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS
+ -DDISABLE_TESTS=ON
+ -DDISABLE_DOC=ON
+ -DDISABLE_SAMPLES=ON
+ -DCMAKE_DISABLE_FIND_PACKAGE_CURL=ON
+ ${options}
+ MAYBE_UNUSED_VARIABLES
+ CMAKE_DISABLE_FIND_PACKAGE_CURL
+)
+
+vcpkg_cmake_install()
+
+vcpkg_copy_pdbs()
+
+if(VCPKG_TARGET_IS_WINDOWS)
+ vcpkg_cmake_config_fixup(CONFIG_PATH cmake PACKAGE_NAME xercesc)
+else()
+ vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/XercesC PACKAGE_NAME xercesc)
+endif()
+
+configure_file("${CMAKE_CURRENT_LIST_DIR}/vcpkg-cmake-wrapper.cmake" "${CURRENT_PACKAGES_DIR}/share/xercesc/vcpkg-cmake-wrapper.cmake" @ONLY)
+
+file(REMOVE_RECURSE
+ "${CURRENT_PACKAGES_DIR}/debug/include"
+ "${CURRENT_PACKAGES_DIR}/debug/share"
+)
+
+vcpkg_fixup_pkgconfig()
+if (VCPKG_TARGET_IS_WINDOWS AND NOT VCPKG_TARGET_IS_MINGW)
+ vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/lib/pkgconfig/xerces-c.pc" "-lxerces-c" "-lxerces-c_3")
+ if(NOT VCPKG_BUILD_TYPE)
+ vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig/xerces-c.pc" "-lxerces-c" "-lxerces-c_3D")
+ endif()
+endif()
+
+vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
+
+file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")