Summary:
Since we have added fbcode_builder to HHVM's CMake module path in D39313365, now this diff switches FindGlog.cmake to the fbcode_builder version.
Note that HHVM's own FindGlog.cmake violates CMake's variable naming conversion. FindGlog.cmake should define variables with a GLOG_ prefix, not a LIBGLOG_ prefix. This diff switches the variables to GLOG_ prefix defined in fbcode_builder's FindGlog.cmake.
Summary: Since we have added
fbcode_builder
to HHVM's CMake module path in D39313365, now this diff switchesFindGlog.cmake
to thefbcode_builder
version.Note that HHVM's own
FindGlog.cmake
violates CMake's variable naming conversion. FindGlog.cmake should define variables with aGLOG_
prefix, not aLIBGLOG_
prefix. This diff switches the variables toGLOG_
prefix defined infbcode_builder
'sFindGlog.cmake
.Differential Revision: D39284637