Fix CLion integration when project name contains a space

This commit is contained in:
Ivan Kravets
2019-11-05 15:16:35 +02:00
parent 30bc691c95
commit 9786b3e1b9

View File

@ -6,7 +6,7 @@
# The `CMakeListsUser.txt` will not be overwritten by PlatformIO.
cmake_minimum_required(VERSION 3.2)
project({{project_name}})
project("{{project_name}}")
include(CMakeListsPrivate.txt)
@ -86,4 +86,4 @@ add_custom_target(
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)
add_executable(${PROJECT_NAME} ${SRC_LIST})
add_executable(pioprog ${SRC_LIST})