Skip to content

Commit

Permalink
Fix executable suffix
Browse files Browse the repository at this point in the history
Signed-off-by: Cristian Le <[email protected]>
  • Loading branch information
LecrisUT committed Jun 11, 2024
1 parent 07fd984 commit 15188ba
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,16 @@ endif ()
## Main targets
add_executable(Wannier90_exe)
set_target_properties(Wannier90_exe PROPERTIES
OUTPUT_NAME wannier90.x
OUTPUT_NAME wannier90
EXPORT_NAME exe
SUFFIX .x
)
add_executable(Wannier90::exe ALIAS Wannier90_exe)
add_executable(Wannier90_post)
set_target_properties(Wannier90_post PROPERTIES
OUTPUT_NAME postw90.x
OUTPUT_NAME postw90
EXPORT_NAME post
SUFFIX .x
)
add_executable(Wannier90::post ALIAS Wannier90_post)
add_library(Wannier90_lib)
Expand Down

0 comments on commit 15188ba

Please sign in to comment.