diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2017-08-18 16:26:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-18 16:26:02 -0700 |
commit | 35737ac7ac1a3bde0dbec193825361336abb2222 (patch) | |
tree | 6feeae4c3318e9f0ff00453204f713b32d72f16a | |
parent | b0ed43e72447c99f297dc86a75d7d58d53af5a07 (diff) | |
parent | 780bae0facea90a5b2105cbc09e87d99887c2e23 (diff) | |
download | googletest-35737ac7ac1a3bde0dbec193825361336abb2222.tar.gz googletest-35737ac7ac1a3bde0dbec193825361336abb2222.tar.bz2 googletest-35737ac7ac1a3bde0dbec193825361336abb2222.zip |
Merge branch 'master' into methodname-in-exception
-rw-r--r-- | googletest/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/googletest/CMakeLists.txt b/googletest/CMakeLists.txt index b5414608..59343ed2 100644 --- a/googletest/CMakeLists.txt +++ b/googletest/CMakeLists.txt @@ -52,6 +52,10 @@ else() endif() cmake_minimum_required(VERSION 2.6.4) +if (POLICY CMP0063) # Visibility + cmake_policy(SET CMP0063 NEW) +endif (POLICY CMP0063) + if (COMMAND set_up_hermetic_build) set_up_hermetic_build() endif() |