mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 01:51:39 +08:00
54 lines
1.7 KiB
CMake
54 lines
1.7 KiB
CMake
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 6a87cabe6cbd69ab41de85be27ff397c1ae49f95c11151a27e8b9329afe4ff3b580084be53c129e883be50e13fadccb3b6cc1eed833c44ce4f8457dedc71b758
|
|
PATCHES
|
|
001-fix-fmt-error.patch
|
|
)
|
|
|
|
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
|
|
replace-execinfo SESE_REPLACE_EXECINFO
|
|
)
|
|
|
|
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_copy_pdbs()
|
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE" "${SOURCE_PATH}/NOTICE")
|
|
|
|
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|