Skip to content

Commit

Permalink
Name executables aspect-debug, aspect-release.
Browse files Browse the repository at this point in the history
  • Loading branch information
bangerth committed Jun 26, 2024
1 parent 64f1603 commit 81edf15
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 81edf15

Please sign in to comment.