From 15e99bf7fd334e5990b97416ffdce86d56ad20a8 Mon Sep 17 00:00:00 2001 From: Samantaz Fox Date: Mon, 5 Oct 2020 20:29:23 +0200 Subject: [PATCH] Fix missing closing bracket in CMakeLists.txt Missing closing brackets in make_directory() statement, on line 373 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 18b242db..0c57eeb9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -370,7 +370,7 @@ macro (configure_files srcDir destDir) set (sourceFilePath ${srcDir}/${sourceFile}) if (IS_DIRECTORY ${sourceFilePath}) message (STATUS "Copying directory ${sourceFile}") - make_directory (${destDir/${sourceFile}) + make_directory (${destDir}/${sourceFile}) else() message (STATUS "Copying file ${sourceFile}") configure_file (${sourceFilePath} ${destDir}/${sourceFile} COPYONLY)