forked from BVLC/caffe
-
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 build configuration for travis-ci
- Loading branch information
1 parent
c357810
commit a2a4d63
Showing
7 changed files
with
81 additions
and
21 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Find the Snappy libraries | ||
# | ||
# The following variables are optionally searched for defaults | ||
# Snappy_ROOT_DIR: Base directory where all Snappy components are found | ||
# | ||
# The following are set after configuration is done: | ||
# Snappy_FOUND | ||
# Snappy_INCLUDE_DIRS | ||
# Snappy_LIBS | ||
|
||
find_path(SNAPPY_INCLUDE_DIR | ||
NAMES snappy.h | ||
HINTS ${SNAPPY_ROOT_DIR} | ||
${SNAPPY_ROOT_DIR}/include | ||
) | ||
|
||
find_library(SNAPPY_LIBS | ||
NAMES snappy | ||
HINTS ${SNAPPY_ROOT_DIR} | ||
${SNAPPY_ROOT_DIR}/lib | ||
) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(Snappy | ||
DEFAULT_MSG | ||
SNAPPY_LIBS | ||
SNAPPY_INCLUDE_DIR | ||
) | ||
|
||
mark_as_advanced( | ||
SNAPPY_LIBS | ||
SNAPPY_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
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