Skip to content

Commit

Permalink
Merge pull request #5944 from bangerth/generator-expression
Browse files Browse the repository at this point in the history
Avoid generator expression in custom target COMMENT text.
  • Loading branch information
tjhei authored Jun 26, 2024
2 parents 64f1603 + e6636ff commit df1f4d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ add_custom_target(aspect ALL
$<TARGET_PROPERTY:${TARGET_EXE},OUTPUT_NAME> # executable file name
${CMAKE_BINARY_DIR}/aspect # link name
DEPENDS ${TARGET_EXE}
COMMENT "Creating symlink $<TARGET_PROPERTY:${TARGET_EXE},OUTPUT_NAME> -> aspect")
COMMENT "Creating symlink from ${TARGET_EXE} to './aspect'")
install(PROGRAMS ${CMAKE_BINARY_DIR}/aspect
TYPE BIN)

Expand Down

0 comments on commit df1f4d6

Please sign in to comment.