From d184370fea5aca0a5251b0c6cce50178cea4a634 Mon Sep 17 00:00:00 2001 From: Martchus Date: Sat, 20 Jul 2019 18:04:10 +0200 Subject: [PATCH] Add note about project() So I don't get the bright idea to revert recent changes again in some future refactoring. --- cmake/modules/BasicConfig.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmake/modules/BasicConfig.cmake b/cmake/modules/BasicConfig.cmake index 86426c8..b09e848 100644 --- a/cmake/modules/BasicConfig.cmake +++ b/cmake/modules/BasicConfig.cmake @@ -13,6 +13,8 @@ if (NOT META_APP_DESCRIPTION) endif () # set project name (displayed in Qt Creator) +# note: The project name is at least shown in Qt Creator this way but unfortunately setting project() from +# an included file is not sufficient (see https://cmake.org/cmake/help/latest/command/project.html#usage). message(STATUS "Configuring project ${META_PROJECT_NAME}") project(${META_PROJECT_NAME})