Skip to content

Commit

Permalink
Fix bug in cmake join function
Browse files Browse the repository at this point in the history
  • Loading branch information
phprus authored and vitaut committed Jun 24, 2021
1 parent 5221242 commit fd16bcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ endif ()

# Joins arguments and places the results in ${result_var}.
function(join result_var)
set(result )
set(result "")
foreach (arg ${ARGN})
set(result "${result}${arg}")
endforeach ()
Expand Down

0 comments on commit fd16bcb

Please sign in to comment.