Skip to content

Commit

Permalink
Merge pull request #5943 from bangerth/dash-not-dot
Browse files Browse the repository at this point in the history
Name executables aspect-debug, aspect-release.
  • Loading branch information
tjhei authored Jun 26, 2024
2 parents df1f4d6 + 81edf15 commit 37781f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -748,14 +748,14 @@ set(TARGET_SRC
if(${ASPECT_BUILD_DEBUG} STREQUAL "ON")
add_executable(${TARGET_EXE_DEBUG} ${TARGET_SRC})
set_property(TARGET ${TARGET_EXE_DEBUG}
PROPERTY OUTPUT_NAME aspect.debug)
PROPERTY OUTPUT_NAME aspect-debug)
deal_ii_setup_target(${TARGET_EXE_DEBUG} DEBUG)
endif()

if(${ASPECT_BUILD_RELEASE} STREQUAL "ON")
add_executable(${TARGET_EXE_RELEASE} ${TARGET_SRC})
set_property(TARGET ${TARGET_EXE_RELEASE}
PROPERTY OUTPUT_NAME aspect.release)
PROPERTY OUTPUT_NAME aspect-release)
deal_ii_setup_target(${TARGET_EXE_RELEASE} RELEASE)
endif()

Expand Down

0 comments on commit 37781f4

Please sign in to comment.