From ac1b29f8231fd84cbce74708491f5a70eb7b239e Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Fri, 4 Jul 2025 09:39:57 -0400 Subject: [PATCH] Set CMake POLICY CMP0177 to NEW --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4121e288a..67f1bdfbe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,6 +29,11 @@ if (POLICY CMP0146) cmake_policy(SET CMP0146 OLD) endif () +# Normalize DESTINATION paths +if (POLICY CMP0177) + cmake_policy(SET CMP0177 NEW) +endif () + #============================================================================== # CMake Project. #==============================================================================