From 7af1bea3b14d667f9037dddd96d1476e9219084f Mon Sep 17 00:00:00 2001 From: Ronald Cron Date: Thu, 11 Jul 2024 08:47:53 +0200 Subject: [PATCH] CMake: Include CMakePrintHelpers Signed-off-by: Ronald Cron --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e1bfbb533..16d92c384 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,6 +22,10 @@ cmake_minimum_required(VERSION 3.5.1) include(CMakePackageConfigHelpers) +# Include convenience functions for printing properties and variables, like +# cmake_print_properties(), cmake_print_variables(). +include(CMakePrintHelpers) + # https://cmake.org/cmake/help/latest/policy/CMP0011.html # Setting this policy is required in CMake >= 3.18.0, otherwise a warning is generated. The OLD # policy setting is deprecated, and will be removed in future versions.