2019-05-03 13:57:43 +08:00
|
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
|
|
|
2017-07-19 05:20:29 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO google/flatbuffers
|
2023-02-01 04:42:18 +08:00
|
|
|
REF "v${VERSION}"
|
2023-05-25 02:46:25 +08:00
|
|
|
SHA512 6eb5417984782208e0fcc33285d02bb13cda526d4029e0dd58e27c4f813eb39f26105ab0ed0880f7c02614985b96a241aad5086dd4f2d131c534a44a2884d08e
|
2017-07-19 05:20:29 +08:00
|
|
|
HEAD_REF master
|
2018-11-29 15:09:08 +08:00
|
|
|
PATCHES
|
2021-03-24 05:38:59 +08:00
|
|
|
fix-uwp-build.patch
|
2017-03-01 10:52:32 +08:00
|
|
|
)
|
|
|
|
|
2022-02-16 12:33:36 +08:00
|
|
|
set(options "")
|
|
|
|
if(VCPKG_CROSSCOMPILING)
|
|
|
|
list(APPEND options -DFLATBUFFERS_BUILD_FLATC=OFF -DFLATBUFFERS_BUILD_FLATHASH=OFF)
|
2022-11-19 04:59:06 +08:00
|
|
|
if(VCPKG_TARGET_IS_OSX OR VCPKG_TARGET_IS_IOS)
|
|
|
|
# The option may cause "#error Unsupported architecture"
|
|
|
|
list(APPEND options -DFLATBUFFERS_OSX_BUILD_UNIVERSAL=OFF)
|
|
|
|
endif()
|
2017-11-27 02:28:16 +08:00
|
|
|
endif()
|
|
|
|
|
2022-02-16 12:33:36 +08:00
|
|
|
vcpkg_cmake_configure(
|
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
2017-03-01 10:52:32 +08:00
|
|
|
OPTIONS
|
|
|
|
-DFLATBUFFERS_BUILD_TESTS=OFF
|
|
|
|
-DFLATBUFFERS_BUILD_GRPCTEST=OFF
|
2022-02-16 12:33:36 +08:00
|
|
|
${options}
|
2017-03-01 10:52:32 +08:00
|
|
|
)
|
|
|
|
|
2022-02-16 12:33:36 +08:00
|
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/flatbuffers)
|
|
|
|
vcpkg_fixup_pkgconfig()
|
2017-03-01 10:52:32 +08:00
|
|
|
|
2018-10-16 17:27:22 +08:00
|
|
|
file(GLOB flatc_path ${CURRENT_PACKAGES_DIR}/bin/flatc*)
|
|
|
|
if(flatc_path)
|
2022-11-18 14:47:35 +08:00
|
|
|
vcpkg_copy_tools(TOOL_NAMES flatc AUTO_CLEAN)
|
2022-02-16 12:33:36 +08:00
|
|
|
else()
|
2023-03-03 03:31:58 +08:00
|
|
|
file(APPEND "${CURRENT_PACKAGES_DIR}/share/flatbuffers/flatbuffers-config.cmake"
|
2023-05-25 02:46:25 +08:00
|
|
|
"\ninclude(\"\${CMAKE_CURRENT_LIST_DIR}/../../../${HOST_TRIPLET}/share/flatbuffers/FlatcTargets.cmake\")\n")
|
2017-03-01 10:52:32 +08:00
|
|
|
endif()
|
|
|
|
|
2022-02-16 12:33:36 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
2022-11-18 14:47:35 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
2022-02-16 12:33:36 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
2017-03-01 10:52:32 +08:00
|
|
|
|
|
|
|
# Handle copyright
|
2023-03-10 04:24:28 +08:00
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|