diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2016-02-21 08:23:16 -0800 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2016-02-21 08:23:16 -0800 |
commit | 1683e58d54200dd2889dfdb7141c9555e16b769e (patch) | |
tree | 06ec86a938040b4a31cfde521de34e1e0547d547 /cmake | |
parent | 762a08915c252e0604b466dc97d5e51b0a86562d (diff) | |
parent | 9dfc6c14c6424b78facfe75bc110dcf6eb14448e (diff) |
Merge branch 'maint'
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/Modules/FindThrift.cmake | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cmake/Modules/FindThrift.cmake b/cmake/Modules/FindThrift.cmake index 4702f90d78..e5a8df1304 100644 --- a/cmake/Modules/FindThrift.cmake +++ b/cmake/Modules/FindThrift.cmake @@ -34,7 +34,11 @@ FIND_LIBRARY(THRIFT_LIBRARIES ) # Get the thrift binary to build our files during cmake -FIND_PROGRAM(THRIFT_BIN thrift) +if (CMAKE_CROSSCOMPILING) + FIND_PROGRAM(THRIFT_BIN thrift NO_CMAKE_FIND_ROOT_PATH) +else (CMAKE_CROSSCOMPILING) + FIND_PROGRAM(THRIFT_BIN thrift) +endif(CMAKE_CROSSCOMPILING) # Use binary to get version string and test against THRIFT_REQ_VERSION EXECUTE_PROCESS( |