Commit fd16bcb2 authored by Владислав Щапов's avatar Владислав Щапов Committed by Victor Zverovich

Fix bug in cmake join function

parent 5221242f
...@@ -17,7 +17,7 @@ endif () ...@@ -17,7 +17,7 @@ endif ()
# Joins arguments and places the results in ${result_var}. # Joins arguments and places the results in ${result_var}.
function(join result_var) function(join result_var)
set(result ) set(result "")
foreach (arg ${ARGN}) foreach (arg ${ARGN})
set(result "${result}${arg}") set(result "${result}${arg}")
endforeach () endforeach ()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment