Skip to content

Commit

Permalink
Binary: Append .HEFFTE (ECP-WarpX#5160)
Browse files Browse the repository at this point in the history
Rename `.PSATD` to `.FFT` and add `.HEFFTE` if compiled.

Signed-off-by: Axel Huebl <[email protected]>
  • Loading branch information
ax3l authored Aug 22, 2024
1 parent 45b1d2f commit 1b342a3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmake/WarpXFunctions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,11 @@ function(set_warpx_binary_name D)
endif()

if(WarpX_FFT)
set_property(TARGET ${tgt} APPEND_STRING PROPERTY OUTPUT_NAME ".PSATD")
set_property(TARGET ${tgt} APPEND_STRING PROPERTY OUTPUT_NAME ".FFT")
endif()

if(WarpX_HEFFTE)
set_property(TARGET ${tgt} APPEND_STRING PROPERTY OUTPUT_NAME ".HEFFTE")
endif()

if(WarpX_EB)
Expand Down

0 comments on commit 1b342a3

Please sign in to comment.