Skip to content

Commit

Permalink
Support interprocedural optimization override
Browse files Browse the repository at this point in the history
This policy applies the CMAKE_INTERPROCEDURAL_OPTIMIZATION override to
the GLFW target.

Fixes #1753.

(cherry picked from commit 9d7897f)
  • Loading branch information
elmindreda committed Sep 2, 2020
1 parent 111c8ec commit 92f80da
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ if (POLICY CMP0054)
cmake_policy(SET CMP0054 NEW)
endif()

if (POLICY CMP0069)
cmake_policy(SET CMP0069 NEW)
endif()

if (POLICY CMP0077)
cmake_policy(SET CMP0077 NEW)
endif()
Expand Down

0 comments on commit 92f80da

Please sign in to comment.