File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,17 +9,17 @@ find_package(Ceres QUIET)
9
9
if (NOT Gflags_FOUND) # Ceres find gflags on the own, so separate search isn't necessary
10
10
find_package (Gflags QUIET )
11
11
endif ()
12
- if (NOT Glog_FOUND) # Ceres find glog on the own, so separate search isn't necessary
12
+ if (NOT ( Glog_FOUND OR glog_FOUND) ) # Ceres find glog on the own, so separate search isn't necessary
13
13
find_package (Glog QUIET )
14
14
endif ()
15
15
16
- if (NOT Gflags_FOUND OR NOT Glog_FOUND)
16
+ if (NOT Gflags_FOUND OR NOT ( Glog_FOUND OR glog_FOUND) )
17
17
# try local search scripts
18
18
list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR} /cmake" )
19
19
if (NOT Gflags_FOUND)
20
20
find_package (Gflags QUIET )
21
21
endif ()
22
- if (NOT Glog_FOUND)
22
+ if (NOT ( Glog_FOUND OR glog_FOUND) )
23
23
find_package (Glog QUIET )
24
24
endif ()
25
25
endif ()
You can’t perform that action at this time.
0 commit comments