Commit 2d1cd6ee authored by Robert Adam's avatar Robert Adam
Browse files

Set cmake policy CMP0069

This ensures that LTO works as expected whenever the main project
has it enabled.
parent 9406a60c
......@@ -11,6 +11,10 @@ if (POLICY CMP0077)
cmake_policy(SET CMP0077 NEW)
endif (POLICY CMP0077)
if (POLICY CMP0069)
cmake_policy(SET CMP0069 NEW)
endif (POLICY CMP0069)
project(googletest-distribution)
set(GOOGLETEST_VERSION 1.11.0)
......
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