vcpkg/ports/sese/portfile.cmake

49 lines
1.5 KiB
CMake
Raw Normal View History

2024-06-08 12:08:50 +08:00
function(remove_empty_directories_recursive dir)
file(GLOB before_subdirs "${dir}/*")
foreach (subdir ${before_subdirs})
if (IS_DIRECTORY ${subdir})
remove_empty_directories_recursive(${subdir})
endif ()
endforeach ()
file(GLOB after_subdirs "${dir}/*")
if ("${after_subdirs}" STREQUAL "")
file(REMOVE_RECURSE "${dir}")
endif ()
endfunction()
set(SOURCE_PATH ${CURRENT_BUILDTRESS_DIR}/sese)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO libsese/sese
REF "${VERSION}"
SHA512 e7c3e014ff2eaecf9968c4fa304ec98445b57458b87da1c4af17f41655565b3cc187e07189ee280104e07b1511f6e2c490a3c689d49d8982d054fc9a462fe136
)
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
tests SESE_BUILD_TEST
mysql SESE_DB_USE_MARIADB
sqlite3 SESE_DB_USE_SQLITE
psql SESE_DB_USE_POSTGRES
async-logger SESE_USE_ASYNC_LOGGER
archive SESE_USE_ARCHIVE
)
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS ${FEATURE_OPTIONS}
)
vcpkg_cmake_install()
vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake/sese")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
remove_empty_directories_recursive("${CURRENT_PACKAGES_DIR}/include/sese")
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE" "${SOURCE_PATH}/NOTICE")
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")