From e6636ff3f0fe8fd86dbbe7ec4ca65ed644d9bf14 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 26 Jun 2024 10:07:54 -0600 Subject: [PATCH] Avoid generator expression in custom target COMMENT text. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5ffbaae6b31..439844b61d5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -771,7 +771,7 @@ add_custom_target(aspect ALL $ # executable file name ${CMAKE_BINARY_DIR}/aspect # link name DEPENDS ${TARGET_EXE} - COMMENT "Creating symlink $ -> aspect") + COMMENT "Creating symlink from ${TARGET_EXE} to './aspect'") install(PROGRAMS ${CMAKE_BINARY_DIR}/aspect TYPE BIN)