Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
daljit46 authored Aug 10, 2023
1 parent 662d6f9 commit 3dc74c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ endforeach(CMD)

function(add_cmd CMD_SRC IS_GUI)
# Extract the filename without an extension (NAME_WE)
get_filename_component(CMD_NAME ${CMD} NAME_WE)
add_executable(${CMD_NAME} ${CMD})
get_filename_component(CMD_NAME ${CMD_SRC} NAME_WE)
add_executable(${CMD_NAME} ${CMD_SRC})
target_link_libraries(${CMD_NAME} PRIVATE
$<IF:$<BOOL:${IS_GUI}>,mrtrix::gui,mrtrix::headless>
mrtrix::exec-version-lib
Expand Down

0 comments on commit 3dc74c3

Please sign in to comment.