mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-13 18:09:02 +08:00
37 lines
1.0 KiB
CMake
37 lines
1.0 KiB
CMake
include(vcpkg_common_functions)
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO discordapp/discord-rpc
|
|
REF v3.2.0
|
|
SHA512 83a32db240f30f4429c145dd400eba5b9985ea779e492ffa2be2ba2664d97e4dec1f4416ad0f3e6fc908c3c9b30aebe4a8e293e0ef3c60e01fc6f16b5f9a7c16
|
|
HEAD_REF master
|
|
)
|
|
|
|
set(STATIC_CRT OFF)
|
|
if(VCPKG_CRT_LINKAGE STREQUAL static)
|
|
set(STATIC_CRT ON)
|
|
endif()
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
OPTIONS -DUSE_STATIC_CRT=${STATIC_CRT}
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
# Remove bin and debug include
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL static)
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin
|
|
${CURRENT_PACKAGES_DIR}/debug/bin)
|
|
else()
|
|
file(REMOVE ${CURRENT_PACKAGES_DIR}/bin/send-presence.exe
|
|
${CURRENT_PACKAGES_DIR}/debug/bin/send-presence.exe)
|
|
endif()
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
|
|
|
# Copy copright information
|
|
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/discord-rpc" RENAME "copyright")
|
|
|
|
vcpkg_copy_pdbs()
|