-
Notifications
You must be signed in to change notification settings - Fork 446
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmake: add Find<package>.cmake find module method for thrift (#1020)
- Loading branch information
Deepika Upadhyay
authored
Oct 21, 2021
1 parent
cc065f7
commit 23476e3
Showing
2 changed files
with
34 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# This module defines Thrift_LIBRARIES, libraries to link Thrift_INCLUDE_DIR, | ||
# Thrift_FOUND, If false, do not try to use it. | ||
|
||
# prefer the Thrift version supplied in Thrift_HOME (cmake -DThrift_HOME then | ||
# environment) | ||
find_path( | ||
Thrift_INCLUDE_DIR | ||
NAMES thrift/Thrift.h | ||
HINTS ${Thrift_HOME} ENV Thrift_HOME /usr/local /opt/local | ||
PATH_SUFFIXES include) | ||
|
||
# prefer the Thrift version supplied in Thrift_HOME | ||
find_library( | ||
Thrift_LIBRARIES | ||
NAMES thrift libthrift | ||
HINTS ${Thrift_HOME} ENV Thrift_HOME /usr/local /opt/local | ||
PATH_SUFFIXES lib lib64) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(Thrift DEFAULT_MSG Thrift_LIBRARIES | ||
Thrift_INCLUDE_DIR) | ||
mark_as_advanced(Thrift_LIBRARIES Thrift_INCLUDE_DIR) | ||
|
||
|
||
if(Thrift_FOUND AND NOT (TARGET thrift::thrift)) | ||
add_library(thrift::thrift UNKNOWN IMPORTED) | ||
set_target_properties( | ||
thrift::thrift | ||
PROPERTIES IMPORTED_LOCATION ${Thrift_LIBRARIES} | ||
INTERFACE_INCLUDE_DIRECTORIES ${Thrift_INCLUDE_DIR}) | ||
endif() |