From ddc3acfa6c25a1a1c92c264024470359f8083a0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=A9=D0=B0=D0=BF=D0=BE=D0=B2?= Date: Fri, 18 Jun 2021 21:27:29 +0500 Subject: [PATCH] Fix bug in cmake join function --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ae9c569262c0..e5e2e317313b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 ()