early-access version 2853
This commit is contained in:
24
externals/vcpkg/ports/tiny-aes-c/CMakeLists.txt
vendored
Executable file
24
externals/vcpkg/ports/tiny-aes-c/CMakeLists.txt
vendored
Executable file
@@ -0,0 +1,24 @@
|
||||
cmake_minimum_required(VERSION 3.14)
|
||||
|
||||
project(tiny-aes-c LANGUAGES C ASM)
|
||||
|
||||
include(GNUInstallDirs)
|
||||
|
||||
add_library(tiny-aes-c aes.c)
|
||||
|
||||
target_include_directories(
|
||||
tiny-aes-c
|
||||
PUBLIC
|
||||
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
|
||||
)
|
||||
|
||||
install(FILES aes.h aes.hpp DESTINATION include)
|
||||
|
||||
install(TARGETS tiny-aes-c EXPORT unofficial-tiny-aes-c-config)
|
||||
|
||||
install(
|
||||
EXPORT unofficial-tiny-aes-c-config
|
||||
NAMESPACE unofficial::tiny-aes-c::
|
||||
DESTINATION share/unofficial-tiny-aes-c
|
||||
PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
|
||||
)
|
25
externals/vcpkg/ports/tiny-aes-c/portfile.cmake
vendored
Executable file
25
externals/vcpkg/ports/tiny-aes-c/portfile.cmake
vendored
Executable file
@@ -0,0 +1,25 @@
|
||||
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO kokke/tiny-AES-c
|
||||
REF ca85e00de963102d3999ea5fa865c0deff6370d3
|
||||
SHA512 538d5d9cee8cecbf801d3553f2425f8a1331b59c652c11ee56c6e46a23450c1e9a59e3e1833f4384b7a4d992a93f30635855a47e2414b9293e0d27c426b6a4f3
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH})
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
|
||||
vcpkg_fixup_cmake_targets(CONFIG_PATH share/unofficial-${PORT} TARGET_PATH share/unofficial-${PORT})
|
||||
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||||
|
||||
# Handle copyright
|
||||
configure_file(${SOURCE_PATH}/unlicense.txt ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY)
|
7
externals/vcpkg/ports/tiny-aes-c/vcpkg.json
vendored
Executable file
7
externals/vcpkg/ports/tiny-aes-c/vcpkg.json
vendored
Executable file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"name": "tiny-aes-c",
|
||||
"version-string": "2019-07-31",
|
||||
"port-version": 1,
|
||||
"description": "Small portable AES128/192/256 in C",
|
||||
"homepage": "https://github.com/kokke/tiny-AES-c"
|
||||
}
|
Reference in New Issue
Block a user