From a789bff0ad26e5ebbed562639da11efebd567e8e Mon Sep 17 00:00:00 2001 From: Jupp Tscheak <jupp.tscheak@daimler.com> Date: Thu, 8 Jul 2021 16:02:06 +0200 Subject: [PATCH] Path prepended to CMAKE_MODULE_PATH was not enclosed with quotes. This might cause problems when building on Windows platforms. Fixed. Signed-off-by: Jupp Tscheak <jupp.tscheak@daimler.com> --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a2f1d3c8..6e38afb7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.14.0 FATAL_ERROR) # Add the custom CMake modules to CMake's module path -list(PREPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/cmake) +list(PREPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake") project( ScenarioAPI -- GitLab