diff options
author | Konstantin Sinitsyn <k.sinitsyn@gmail.com> | 2016-07-30 03:10:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-08-02 14:50:24 (GMT) |
commit | 5790d9b6f5ae0b5bb8b0f2e4ec630a690b4b0301 (patch) | |
tree | d9ee49505730e43274c39ab23112d90c62c48c14 /Modules/FindProtobuf.cmake | |
parent | f59513140bf086eda2029c5b4e950fc58216c06e (diff) | |
download | CMake-5790d9b6f5ae0b5bb8b0f2e4ec630a690b4b0301.zip CMake-5790d9b6f5ae0b5bb8b0f2e4ec630a690b4b0301.tar.gz CMake-5790d9b6f5ae0b5bb8b0f2e4ec630a690b4b0301.tar.bz2 |
FindProtobuf: Restore support for PROTOBUF_IMPORT_DIRS
Support was accidentally dropped by commit v3.6.0-rc1~273^2
(FindProtobuf: Rename variables to match case of module name,
2016-03-01).
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 8042073..2807bb9 100644 --- a/Modules/FindProtobuf.cmake +++ b/Modules/FindProtobuf.cmake @@ -129,6 +129,10 @@ function(PROTOBUF_GENERATE_CPP SRCS HDRS) set(_protobuf_include_path -I ${CMAKE_CURRENT_SOURCE_DIR}) 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) foreach(DIR ${Protobuf_IMPORT_DIRS}) get_filename_component(ABS_PATH ${DIR} ABSOLUTE) @@ -183,6 +187,10 @@ function(PROTOBUF_GENERATE_PYTHON SRCS) set(_protobuf_include_path -I ${CMAKE_CURRENT_SOURCE_DIR}) 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) foreach(DIR ${Protobuf_IMPORT_DIRS}) get_filename_component(ABS_PATH ${DIR} ABSOLUTE) |