mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 19:29:08 +08:00
06d29adda9
* Initial port for Ableton Link * Added missing versions/a-/ableton.json file * Added double quotes to all relative paths in portfile.cmake * Removed CMakeLists.txt file from the installed files * Use Catch2 only in CMakeLists.txt, when test features are enabled * Made find_package asio conditional too
71 lines
2.7 KiB
CMake
71 lines
2.7 KiB
CMake
#header-only library
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO Ableton/link
|
|
REF 2641130bca65cdfb95794b31a6453a825333bd28
|
|
SHA512 a7c2e2904fe3e0b10affd5482f057c39634cf8935a09732a7ac3b33096754e6a5dbb4545cd51c327c74383065d2dd046ec40ff68fda3013ad1bf8ff4165b469f
|
|
HEAD_REF master
|
|
PATCHES
|
|
replace_local_asiostandalone_by_vcpkg_asio.patch
|
|
replace_local_catch_by_vcpkg_catch2.patch
|
|
)
|
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
FEATURES
|
|
"discoverytest" LinkDiscoveryTest
|
|
"coretest" LinkCoreTest
|
|
"hut" LinkHut
|
|
"hutsilent" LinkHutSilent
|
|
)
|
|
|
|
file(REMOVE_RECURSE "${SOURCE_PATH}/ci")
|
|
file(REMOVE_RECURSE "${SOURCE_PATH}/modules")
|
|
file(REMOVE_RECURSE "${SOURCE_PATH}/third_party")
|
|
|
|
set(NEED_CATCH2 OFF)
|
|
if ("coretest" IN_LIST FEATURES)
|
|
set(NEED_CATCH2 ON)
|
|
endif()
|
|
if ("discoverytest" IN_LIST FEATURES)
|
|
set(NEED_CATCH2 ON)
|
|
endif()
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
-DNEED_CATCH2=${NEED_CATCH2}
|
|
)
|
|
|
|
if ("coretest" IN_LIST FEATURES)
|
|
vcpkg_cmake_build(TARGET LinkCoreTest)
|
|
file(INSTALL "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg/bin/LinkCoreTest${VCPKG_TARGET_EXECUTABLE_SUFFIX}" DESTINATION "${CURRENT_PACKAGES_DIR}/tools/${PORT}")
|
|
endif()
|
|
if ("discoverytest" IN_LIST FEATURES)
|
|
vcpkg_cmake_build(TARGET LinkDiscoveryTest)
|
|
file(INSTALL "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg/bin/LinkDiscoveryTest${VCPKG_TARGET_EXECUTABLE_SUFFIX}" DESTINATION "${CURRENT_PACKAGES_DIR}/tools/${PORT}")
|
|
endif()
|
|
if ("hut" IN_LIST FEATURES)
|
|
vcpkg_cmake_build(TARGET LinkHut)
|
|
file(INSTALL "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg/bin/LinkHut${VCPKG_TARGET_EXECUTABLE_SUFFIX}" DESTINATION "${CURRENT_PACKAGES_DIR}/tools/${PORT}")
|
|
endif()
|
|
if ("hutsilent" IN_LIST FEATURES)
|
|
vcpkg_cmake_build(TARGET LinkHutSilent)
|
|
file(INSTALL "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg/bin/LinkHutSilent${VCPKG_TARGET_EXECUTABLE_SUFFIX}" DESTINATION "${CURRENT_PACKAGES_DIR}/tools/${PORT}")
|
|
endif()
|
|
|
|
# We must not correct the CMake include path before build
|
|
vcpkg_apply_patches(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
PATCHES
|
|
correct_cmake_include_directory.patch
|
|
)
|
|
|
|
file(INSTALL "${SOURCE_PATH}/AbletonLinkConfig.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/")
|
|
file(INSTALL "${SOURCE_PATH}/cmake_include/" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/cmake_include/")
|
|
file(INSTALL "${SOURCE_PATH}/include/" DESTINATION "${CURRENT_PACKAGES_DIR}/include" PATTERN "CMakeLists.txt" EXCLUDE)
|
|
|
|
# Handle copyright
|
|
file(INSTALL "${SOURCE_PATH}/LICENSE.md" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|