From f56c068ee07e9ae0d1ecc2c2c69873e998785bba Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Wed, 2 Mar 2022 12:45:11 +0100 Subject: [PATCH] pro2cmake: Fix indentation of INSTALL_EXAMPLESDIR assignment Change-Id: If1f5d8b5afc76fac62fdf9836a17c4ab87ddc1b1 Reviewed-by: Alexandru Croitor --- util/cmake/pro2cmake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py index 0361a992807..6f8984eae8e 100755 --- a/util/cmake/pro2cmake.py +++ b/util/cmake/pro2cmake.py @@ -3803,7 +3803,7 @@ def write_example( "set(CMAKE_AUTOMOC ON)\n" "set(CMAKE_AUTOUIC ON)\n\n" "if(NOT DEFINED INSTALL_EXAMPLESDIR)\n" - ' set(INSTALL_EXAMPLESDIR "examples")\n' + ' set(INSTALL_EXAMPLESDIR "examples")\n' "endif()\n\n" f'set(INSTALL_EXAMPLEDIR "{example_install_dir}")\n\n' )