From 18260a784c945f93357e344cf29b64f950af761c Mon Sep 17 00:00:00 2001 From: Mauricio Briceno Date: Fri, 24 Jan 2025 21:52:02 +0100 Subject: [PATCH] CMake: silence policy CMP0117 warning - Warns when a Destination path is different from its normalized version - This happens for the wheels' destination directory - But this is benign as there's a trailing path separator that gets removed by the path normalization algorithm resulting in essentially the same original path Change-Id: Ie6f6382941ea533d3b68b5acf275a0f7c07291d5 Signed-off-by: Mauricio Briceno --- ethosu/regor/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/ethosu/regor/CMakeLists.txt b/ethosu/regor/CMakeLists.txt index 07ca0f97..08d32514 100644 --- a/ethosu/regor/CMakeLists.txt +++ b/ethosu/regor/CMakeLists.txt @@ -39,6 +39,7 @@ regor_policy(69 NEW) regor_policy(91 NEW) regor_policy(92 NEW) regor_policy(94 NEW) +regor_policy(117 NEW) ############################################################################# # Project -- GitLab