Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
6 changed files
with
35 additions
and
27 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # - Find zstd | ||
| # Find the zstd compression library and includes | ||
| # | ||
| # ZSTD_INCLUDE_DIR - where to find zstd.h, etc. | ||
| # ZSTD_LIBRARIES - List of libraries when using zstd. | ||
| # ZSTD_FOUND - True if zstd found. | ||
|
|
||
| if (DEFINED ZSTD_LIBRARIES) | ||
| return() | ||
| endif() | ||
|
|
||
| find_path(ZSTD_INCLUDE_DIR | ||
| NAMES zstd.h | ||
| HINTS ${ZSTD_ROOT_DIR}/include) | ||
|
|
||
| find_library(ZSTD_LIBRARIES | ||
| NAMES zstd | ||
| HINTS ${ZSTD_ROOT_DIR}/lib) | ||
|
|
||
| include(FindPackageHandleStandardArgs) | ||
| find_package_handle_standard_args(zstd DEFAULT_MSG ZSTD_LIBRARIES ZSTD_INCLUDE_DIR) | ||
|
|
||
| mark_as_advanced( | ||
| ZSTD_LIBRARIES | ||
| ZSTD_INCLUDE_DIR) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule libmariadb
updated
from 463211 to ade0d6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters