Commit a6675187 authored by Fumitoshi Ukai's avatar Fumitoshi Ukai

Merge pull request #49 from sergiud/cmake-visibility

Fixed warning caused by policy CMP0063 introduced in CMake 3.3
parents 85e5c6ed ed6dba0b
......@@ -4,6 +4,10 @@ if (POLICY CMP0042)
cmake_policy (SET CMP0042 NEW)
endif (POLICY CMP0042)
if (POLICY CMP0063)
cmake_policy (SET CMP0063 NEW)
endif (POLICY CMP0063)
project (google-glog)
enable_testing ()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment