vcpkg/ports/spdlog/portfile.cmake

36 lines
1.4 KiB
CMake
Raw Normal View History

2016-10-26 19:44:28 -07:00
#header-only library
2016-10-11 16:06:50 -05:00
include(vcpkg_common_functions)
2017-05-20 13:01:31 +02:00
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO gabime/spdlog
2017-08-19 20:00:54 +02:00
REF v0.14.0
SHA512 f49b7f26f4fde57fe16f32ab89082f0c590645c627f5b4646f633a16f3eec2926b3465e742bc4899cb802e7b974978c547638205065e9955ed9696fbcaf0b444
2017-05-20 13:01:31 +02:00
HEAD_REF master
2016-10-11 16:06:50 -05:00
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
2017-02-25 16:57:03 +01:00
PREFER_NINJA
2017-02-25 16:52:57 +01:00
OPTIONS
-DSPDLOG_BUILD_TESTING=OFF
2016-10-11 16:06:50 -05:00
)
vcpkg_install_cmake()
2017-05-20 13:01:31 +02:00
# Move cmake files, ensuring they will be 3 directories up the import prefix
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/share/spdlog)
file(RENAME ${CURRENT_PACKAGES_DIR}/lib/cmake/spdlog/ ${CURRENT_PACKAGES_DIR}/share/spdlog/cmake)
2016-10-11 16:06:50 -05:00
2017-05-20 13:01:31 +02:00
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib)
2016-10-11 16:06:50 -05:00
2017-02-25 16:52:57 +01:00
# use vcpkg-provided fmt library
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/spdlog/fmt/bundled)
file(READ ${CURRENT_PACKAGES_DIR}/include/spdlog/tweakme.h SPDLOG_TWEAKME_CONTENTS)
2017-05-20 13:01:31 +02:00
string(REPLACE "// #define SPDLOG_FMT_EXTERNAL" "#define SPDLOG_FMT_EXTERNAL" SPDLOG_TWEAKME_CONTENTS "${SPDLOG_TWEAKME_CONTENTS}")
file(WRITE ${CURRENT_PACKAGES_DIR}/include/spdlog/tweakme.h "${SPDLOG_TWEAKME_CONTENTS}")
2017-02-25 16:52:57 +01:00
2016-10-11 16:06:50 -05:00
# Handle copyright
file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/spdlog)
file(RENAME ${CURRENT_PACKAGES_DIR}/share/spdlog/LICENSE ${CURRENT_PACKAGES_DIR}/share/spdlog/copyright)