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
|
2022-04-19 05:35:25 +08:00
|
|
|
REF v2.0.6
|
|
|
|
SHA512 be631f34064c28d81876bf137c796e9736623cf2cc4f2a05dd45372e7195729c99fad1fa795f8ce71a408756a842edbdc0c3bc714a7cf63203a1de8681d86fb6
|
2017-07-19 05:20:29 +08:00
|
|
|
HEAD_REF master
|
2018-11-29 15:09:08 +08:00
|
|
|
PATCHES
|
2019-06-07 10:03:08 +08:00
|
|
|
ignore_use_of_cmake_toolchain_file.patch
|
|
|
|
no-werror.patch
|
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)
|
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-02-16 12:33:36 +08:00
|
|
|
make_directory("${CURRENT_PACKAGES_DIR}/tools/flatbuffers")
|
2018-10-16 17:27:22 +08:00
|
|
|
get_filename_component(flatc_executable ${flatc_path} NAME)
|
2018-07-11 15:22:33 +08:00
|
|
|
file(
|
|
|
|
RENAME
|
2018-10-16 17:27:22 +08:00
|
|
|
${flatc_path}
|
|
|
|
${CURRENT_PACKAGES_DIR}/tools/flatbuffers/${flatc_executable}
|
2018-07-11 15:22:33 +08:00
|
|
|
)
|
2022-02-16 12:33:36 +08:00
|
|
|
vcpkg_copy_tool_dependencies("${CURRENT_PACKAGES_DIR}/tools/flatbuffers")
|
|
|
|
else()
|
|
|
|
file(APPEND "${CURRENT_PACKAGES_DIR}/share/flatbuffers/FlatbuffersConfig.cmake"
|
|
|
|
"include(\"\${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")
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
2017-03-01 10:52:32 +08:00
|
|
|
|
|
|
|
# Handle copyright
|
2022-02-16 12:33:36 +08:00
|
|
|
file(INSTALL "${SOURCE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|