mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-26 09:31:08 +08:00
[fixed-containers] add new port (#41677)
This commit is contained in:
parent
d1cfa53ba7
commit
612279c487
35
ports/fixed-containers/add-install-configuration.patch
Normal file
35
ports/fixed-containers/add-install-configuration.patch
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index 2738060..4f3aedd 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -236,6 +236,13 @@ if (FIXED_CONTAINERS_OPT_INSTALL)
|
||||||
|
target_include_directories(fixed_containers INTERFACE $<INSTALL_INTERFACE:include>)
|
||||||
|
|
||||||
|
include(CMakePackageConfigHelpers)
|
||||||
|
+
|
||||||
|
+ configure_package_config_file(
|
||||||
|
+ ${PROJECT_NAME}Config.cmake.in
|
||||||
|
+ "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake"
|
||||||
|
+ INSTALL_DESTINATION lib/cmake/${PROJECT_NAME}/
|
||||||
|
+ NO_CHECK_REQUIRED_COMPONENTS_MACRO)
|
||||||
|
+
|
||||||
|
write_basic_package_version_file(${PROJECT_NAME}ConfigVersion.cmake
|
||||||
|
VERSION "0.0.0"
|
||||||
|
COMPATIBILITY AnyNewerVersion
|
||||||
|
@@ -249,11 +256,14 @@ if (FIXED_CONTAINERS_OPT_INSTALL)
|
||||||
|
|
||||||
|
install(EXPORT ${PROJECT_NAME}Config
|
||||||
|
NAMESPACE ${PROJECT_NAME}::
|
||||||
|
+ FILE ${PROJECT_NAME}-targets.cmake
|
||||||
|
DESTINATION lib/cmake/${PROJECT_NAME})
|
||||||
|
|
||||||
|
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/include
|
||||||
|
DESTINATION .)
|
||||||
|
|
||||||
|
- export(EXPORT ${PROJECT_NAME}Config
|
||||||
|
- NAMESPACE ${PROJECT_NAME}::)
|
||||||
|
+ install(
|
||||||
|
+ FILES
|
||||||
|
+ "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake"
|
||||||
|
+ DESTINATION lib/cmake/${PROJECT_NAME})
|
||||||
|
endif()
|
9
ports/fixed-containers/fixed_containersConfig.cmake.in
Normal file
9
ports/fixed-containers/fixed_containersConfig.cmake.in
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
@PACKAGE_INIT@
|
||||||
|
|
||||||
|
include(CMakeFindDependencyMacro)
|
||||||
|
|
||||||
|
find_dependency(magic_enum CONFIG)
|
||||||
|
|
||||||
|
include("${CMAKE_CURRENT_LIST_DIR}/fixed_containers-targets.cmake")
|
||||||
|
|
27
ports/fixed-containers/portfile.cmake
Normal file
27
ports/fixed-containers/portfile.cmake
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
vcpkg_from_github(
|
||||||
|
OUT_SOURCE_PATH SOURCE_PATH
|
||||||
|
REPO teslamotors/fixed-containers
|
||||||
|
REF 1ad10a6ca835611124f54a1d8ed04bcf7ab53da4
|
||||||
|
SHA512 71b7ea86ed45bac39c2f22c572f84d3a9862aab350eeef5d72c6061d42c10bf7fad26cafc6c6b991cdf3ac758b23c29fd8d3414f1b2af7c65058bc31d000b49b
|
||||||
|
HEAD_REF main
|
||||||
|
PATCHES add-install-configuration.patch
|
||||||
|
)
|
||||||
|
|
||||||
|
set(VCPKG_BUILD_TYPE release) # header-only
|
||||||
|
|
||||||
|
file(COPY "${CMAKE_CURRENT_LIST_DIR}/fixed_containersConfig.cmake.in" DESTINATION "${SOURCE_PATH}")
|
||||||
|
|
||||||
|
vcpkg_cmake_configure(
|
||||||
|
SOURCE_PATH "${SOURCE_PATH}"
|
||||||
|
OPTIONS
|
||||||
|
-DBUILD_TESTS=OFF
|
||||||
|
-DFIXED_CONTAINERS_OPT_INSTALL=ON
|
||||||
|
)
|
||||||
|
|
||||||
|
vcpkg_cmake_install()
|
||||||
|
|
||||||
|
vcpkg_cmake_config_fixup(PACKAGE_NAME fixed_containers CONFIG_PATH lib/cmake/fixed_containers)
|
||||||
|
|
||||||
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib")
|
||||||
|
|
||||||
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|
18
ports/fixed-containers/vcpkg.json
Normal file
18
ports/fixed-containers/vcpkg.json
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"name": "fixed-containers",
|
||||||
|
"version-date": "2024-09-19",
|
||||||
|
"description": "C++ Fixed Containers",
|
||||||
|
"homepage": "https://github.com/teslamotors/fixed-containers",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": [
|
||||||
|
"magic-enum",
|
||||||
|
{
|
||||||
|
"name": "vcpkg-cmake",
|
||||||
|
"host": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "vcpkg-cmake-config",
|
||||||
|
"host": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -2756,6 +2756,10 @@
|
|||||||
"baseline": "2023-07-31",
|
"baseline": "2023-07-31",
|
||||||
"port-version": 0
|
"port-version": 0
|
||||||
},
|
},
|
||||||
|
"fixed-containers": {
|
||||||
|
"baseline": "2024-09-19",
|
||||||
|
"port-version": 0
|
||||||
|
},
|
||||||
"fixed-string": {
|
"fixed-string": {
|
||||||
"baseline": "0.1.1",
|
"baseline": "0.1.1",
|
||||||
"port-version": 0
|
"port-version": 0
|
||||||
|
9
versions/f-/fixed-containers.json
Normal file
9
versions/f-/fixed-containers.json
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"versions": [
|
||||||
|
{
|
||||||
|
"git-tree": "df7eaca532d35f09faf63721a245c1fccafddc29",
|
||||||
|
"version-date": "2024-09-19",
|
||||||
|
"port-version": 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user