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

16
externals/vcpkg/ports/hfsm2/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,16 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO andrew-gresyk/HFSM2
REF 1_10_1
SHA512 49ae09a3e4052c7a70390510d128d4d0a41f3c2b6bb9cf2c0b36d272ca1a2524c1d2b544e4c36655681255ce6a5e2f3f90f8c4e9957e8c49e49a62927134a718
HEAD_REF master
)
# Install include directory
file(INSTALL "${SOURCE_PATH}/include" DESTINATION "${CURRENT_PACKAGES_DIR}")
# Handle copyright
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
# Copy usage file
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")

4
externals/vcpkg/ports/hfsm2/usage vendored Executable file
View File

@@ -0,0 +1,4 @@
The package hfsm2 is header only and can be used from CMake via:
find_path(HFSM2_INCLUDE_DIRS "hfsm2/machine.hpp")
target_include_directories(main PRIVATE ${HFSM2_INCLUDE_DIRS})

6
externals/vcpkg/ports/hfsm2/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,6 @@
{
"name": "hfsm2",
"version": "1.10.1",
"description": "Header-only heriarchical FSM framework in C++14, with fully statically-defined structure (no dynamic allocations), built with variadic templates.",
"homepage": "https://github.com/andrew-gresyk/HFSM2"
}