forked from nxp-imx/apitrace-imx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmake: Actually add FindSNAPPY.cmake.
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
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,13 @@ | ||
# Find SNAPPY - A fast compressor/decompressor | ||
# | ||
# This module defines | ||
# SNAPPY_FOUND - whether the snappy library was found | ||
# SNAPPY_LIBRARIES - the snappy library | ||
# SNAPPY_INCLUDE_DIR - the include path of the snappy library | ||
# | ||
|
||
find_path (SNAPPY_INCLUDE_DIR NAMES snappy.h) | ||
find_library (SNAPPY_LIBRARIES NAMES snappy) | ||
|
||
include (FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args (SNAPPY DEFAULT_MSG SNAPPY_LIBRARIES SNAPPY_INCLUDE_DIR) |