From 37ffc42b144053ea3d5624d73e0e592fd3205fcf Mon Sep 17 00:00:00 2001 From: Vladimir Onoprienko <vonopr@yandex.ru> Date: Mon, 18 Apr 2022 13:09:58 +0300 Subject: [PATCH] Fix bug Automatic download of dependencies is considered to be the default behavior when building the project according to README.md. However, the automatic download is not enabled by default now due to the mistake in syntax of option() command in CMakeLists.txt. This commit fixes the bug. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 564598d..13e4a37 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.14) project(exple_cmake_build CXX) -option(DOWNLOAD_DEPS ON) +option(DOWNLOAD_DEPS "Enable automatic download of dependencies" ON) # download dependency 'explelibx_common' or find it locally if (DOWNLOAD_DEPS) -- GitLab