early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

15
externals/vcpkg/ports/cnl/disable-test.patch vendored Executable file
View File

@@ -0,0 +1,15 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 73111fc..a0cb3db 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -9,8 +9,8 @@ project(cnl)
cmake_minimum_required(VERSION 3.5.1)
-include(CTest)
-add_subdirectory("test")
+# include(CTest)
+# add_subdirectory("test")
# the CNL library
add_library(Cnl INTERFACE)

24
externals/vcpkg/ports/cnl/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,24 @@
# header-only library
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO johnmcfarlane/cnl
REF 2dde6e62e608a4adc3c5504f067575efa4910568 #v1.1.7
SHA512 33a81ea726802c71a684bcd002b5119cde4db471ebc9ba02cd15c7487ab468eeca09fb8dcaed953e3f3cded2cd813a903f808d97527b0ec7f393647b64a22572
HEAD_REF main
PATCHES
disable-test.patch
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
)
vcpkg_install_cmake()
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/${PORT})
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug ${CURRENT_PACKAGES_DIR}/lib)
# Handle copyright
configure_file(${SOURCE_PATH}/LICENSE_1_0.txt ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY)

7
externals/vcpkg/ports/cnl/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,7 @@
{
"name": "cnl",
"version-string": "1.1.7",
"port-version": 1,
"description": "A Compositional Numeric Library for C++",
"homepage": "https://github.com/johnmcfarlane/cnl"
}