mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 12:09:01 +08:00
56 lines
2.0 KiB
CMake
56 lines
2.0 KiB
CMake
include(vcpkg_common_functions)
|
|
|
|
if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
|
|
message(STATUS "Warning: Dynamic building not supported. Building static.") # See note below
|
|
set(VCPKG_LIBRARY_LINKAGE static)
|
|
|
|
# As per Ben Craig thrift comment see https://issues.apache.org/jira/browse/THRIFT-1834
|
|
# Currently, Thrift is designed to be packaged as a static library. As a static library, the consuming program / dll will only pull in the object files that it needs, so the per-binary size increase should be pretty small.
|
|
# Thrift isn't a very good candidate to become a dynamic library. No attempts are made to preserve binary compatibility, or to provide a C / COM-like interface to make binary compatibility easy.
|
|
endif()
|
|
|
|
vcpkg_find_acquire_program(FLEX)
|
|
vcpkg_find_acquire_program(BISON)
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO apache/thrift
|
|
REF 92be4f312b88eac0a4ac450eda29fd20de11b1f0
|
|
SHA512 0c1c7eb30fc63efa483cd9970305b5285c7d6f57151a9e0f602ff757b05cede3adb13688c5d1436c05ffd4bd142ca7676db8e35cbf4d38e9112033f6a2e77ff4
|
|
HEAD_REF master
|
|
)
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
OPTIONS
|
|
-DWITH_SHARED_LIB=OFF
|
|
-DWITH_STATIC_LIB=ON
|
|
-DWITH_STDTHREADS=ON
|
|
-DBUILD_TESTING=off
|
|
-DBUILD_JAVA=off
|
|
-DBUILD_C_GLIB=off
|
|
-DBUILD_PYTHON=off
|
|
-DBUILD_CPP=on
|
|
-DBUILD_HASKELL=off
|
|
-DBUILD_TUTORIALS=off
|
|
-DFLEX_EXECUTABLE=${FLEX}
|
|
-DBISON_EXECUTABLE=${BISON}
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/thrift RENAME copyright)
|
|
|
|
file(GLOB COMPILER "${CURRENT_PACKAGES_DIR}/bin/thrift*")
|
|
if(COMPILER)
|
|
file(COPY ${COMPILER} DESTINATION ${CURRENT_PACKAGES_DIR}/tools/thrift)
|
|
file(REMOVE ${COMPILER})
|
|
vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/tools/thrift)
|
|
endif()
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/bin)
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin)
|
|
vcpkg_copy_pdbs()
|