mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-18 19:03:02 +08:00
[folly] Add missing files.
This commit is contained in:
parent
3e1104465e
commit
10e77be9fa
12
ports/folly/FindLZ4.cmake
Normal file
12
ports/folly/FindLZ4.cmake
Normal file
@ -0,0 +1,12 @@
|
||||
find_path(LZ4_INCLUDE_DIR lz4.h)
|
||||
|
||||
find_package(LZ4_LIBRARY_DEBUG NAMES lz4d)
|
||||
find_package(LZ4_LIBRARY_RELEASE NAMES lz4)
|
||||
|
||||
select_library_configurations(LZ4_LIBRARY)
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(
|
||||
LZ4 DEFAULT_MSG
|
||||
LZ4_LIBRARY LZ4_INCLUDE_DIR
|
||||
)
|
12
ports/folly/FindSnappy.cmake
Normal file
12
ports/folly/FindSnappy.cmake
Normal file
@ -0,0 +1,12 @@
|
||||
find_path(SNAPPY_INCLUDE_DIR snappy.h)
|
||||
|
||||
find_package(SNAPPY_LIBRARY_DEBUG NAMES snappyd)
|
||||
find_package(SNAPPY_LIBRARY_RELEASE NAMES snappy)
|
||||
|
||||
select_library_configurations(SNAPPY_LIBRARY)
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(
|
||||
SNAPPY DEFAULT_MSG
|
||||
SNAPPY_LIBRARY SNAPPY_INCLUDE_DIR
|
||||
)
|
Loading…
Reference in New Issue
Block a user