forked from facebook/rocksdb
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmake: do not build tests for Release build and cleanups (facebook#5916)
Summary: fixes facebook#2445 Pull Request resolved: facebook#5916 Differential Revision: D19031236 fbshipit-source-id: bc3107b6b25a01958677d7cb411b1f381aae91c6
- Loading branch information
1 parent
2b10552
commit 5366282
Showing
4 changed files
with
105 additions
and
64 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,29 @@ | ||
# - Find gflags library | ||
# Find the gflags includes and library | ||
# | ||
# gflags_INCLUDE_DIR - where to find gflags.h. | ||
# gflags_LIBRARIES - List of libraries when using gflags. | ||
# gflags_FOUND - True if gflags found. | ||
|
||
find_path(GFLAGS_INCLUDE_DIR | ||
NAMES gflags/gflags.h) | ||
|
||
find_library(GFLAGS_LIBRARIES | ||
NAMES gflags) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(gflags | ||
DEFAULT_MSG GFLAGS_LIBRARIES GFLAGS_INCLUDE_DIR) | ||
|
||
mark_as_advanced( | ||
GFLAGS_LIBRARIES | ||
GFLAGS_INCLUDE_DIR) | ||
|
||
if(gflags_FOUND AND NOT (TARGET gflags::gflags)) | ||
add_library(gflags::gflags UNKNOWN IMPORTED) | ||
set_target_properties(gflags::gflags | ||
PROPERTIES | ||
IMPORTED_LOCATION ${GFLAGS_LIBRARIES} | ||
INTERFACE_INCLUDE_DIRECTORIES ${GFLAGS_INCLUDE_DIR} | ||
IMPORTED_LINK_INTERFACE_LANGUAGES "CXX") | ||
endif() |
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