From 457a53d66600e5f07e125e31dc0d026abef786fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20=C4=8Cert=C3=ADk?= Date: Mon, 18 Nov 2019 10:46:08 -0700 Subject: [PATCH] Fix the name of jkqtplotter_lib_properties Previously it could not find the cmake file and giving an error: ``` CMake Error at CMakeLists.txt:15 (include): include could not find load file: JKQtPlotter_LIB_properties ``` --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b169acd10..793d834fa9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON) include(jkqtplotter_common_include) # Project Name and Version -include(JKQtPlotter_LIB_properties) +include(jkqtplotter_lib_properties) # CMake options with default values and description texts include(jkqtplotter_cmake_options)