diff options
author | André Apitzsch <andre.apitzsch@etit.tu-chemnitz.de> | 2018-07-12 12:27:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-07-16 12:59:21 (GMT) |
commit | 1385b4b1138eeebd79b6dab940915b509a82cb5f (patch) | |
tree | 6d615ff602766ad512b1d6414ee290807bb3c270 /Modules/FindProtobuf.cmake | |
parent | 1bcc0f3678daea6bb7f999ebded1eab471b32e28 (diff) | |
download | CMake-1385b4b1138eeebd79b6dab940915b509a82cb5f.zip CMake-1385b4b1138eeebd79b6dab940915b509a82cb5f.tar.gz CMake-1385b4b1138eeebd79b6dab940915b509a82cb5f.tar.bz2 |
Protobuf: restore 'PROTOBUF_IMPORT_DIRS' check
This was not present in the upstream code.
Diffstat (limited to 'Modules/FindProtobuf.cmake')
-rw-r--r-- | Modules/FindProtobuf.cmake | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Modules/FindProtobuf.cmake b/Modules/FindProtobuf.cmake index 720e553..fdd7d48 100644 --- a/Modules/FindProtobuf.cmake +++ b/Modules/FindProtobuf.cmake @@ -245,6 +245,10 @@ function(PROTOBUF_GENERATE_CPP SRCS HDRS) set(_append_arg APPEND_PATH) endif() + if(DEFINED PROTOBUF_IMPORT_DIRS AND NOT DEFINED Protobuf_IMPORT_DIRS) + set(Protobuf_IMPORT_DIRS "${PROTOBUF_IMPORT_DIRS}") + endif() + if(DEFINED Protobuf_IMPORT_DIRS) set(_import_arg IMPORT_DIRS ${Protobuf_IMPORT_DIRS}) endif() @@ -275,6 +279,10 @@ function(PROTOBUF_GENERATE_PYTHON SRCS) set(_append_arg APPEND_PATH) endif() + if(DEFINED PROTOBUF_IMPORT_DIRS AND NOT DEFINED Protobuf_IMPORT_DIRS) + set(Protobuf_IMPORT_DIRS "${PROTOBUF_IMPORT_DIRS}") + endif() + if(DEFINED Protobuf_IMPORT_DIRS) set(_import_arg IMPORT_DIRS ${Protobuf_IMPORT_DIRS}) endif() |