Skip to content
Snippets Groups Projects
Commit a789bff0 authored by Jupp Tscheak's avatar Jupp Tscheak
Browse files

Path prepended to CMAKE_MODULE_PATH was not enclosed with quotes.


This might cause problems when building on Windows platforms. Fixed.

Signed-off-by: default avatarJupp Tscheak <jupp.tscheak@daimler.com>
parent 8e1e8507
No related branches found
No related tags found
1 merge request!5Initial provision of build automation using CMake.
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment