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

17
externals/vcpkg/ports/czmq/Findlz4.cmake vendored Executable file
View File

@@ -0,0 +1,17 @@
find_path(LZ4_INCLUDE_DIR NAMES lz4.h)
find_library(LZ4_LIBRARY_DEBUG NAMES lz4d)
find_library(LZ4_LIBRARY_RELEASE NAMES lz4)
include(SelectLibraryConfigurations)
select_library_configurations(LZ4)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(
LZ4
REQUIRED_VARS LZ4_LIBRARY LZ4_INCLUDE_DIR
)
if(LZ4_FOUND)
set(LZ4_INCLUDE_DIRS ${LZ4_INCLUDE_DIR})
endif()