File tree 1 file changed +2
-2
lines changed
cmake/Platform/Core/Libraries
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -48,11 +48,11 @@ function(make_arduino_library VAR_NAME BOARD_ID LIB_PATH COMPILE_FLAGS LINK_FLAG
48
48
endforeach ()
49
49
50
50
if (LIB_INCLUDES)
51
- string (REPLACE ";" " " LIB_INCLUDES "${LIB_INCLUDES} " )
51
+ string (REPLACE ";" " " LIB_INCLUDES_SPACE_SEPARATED "${LIB_INCLUDES} " )
52
52
endif ()
53
53
54
54
set_target_properties (${TARGET_LIB_NAME} PROPERTIES
55
- COMPILE_FLAGS "${ARDUINO_COMPILE_FLAGS} ${LIB_INCLUDES } -I\" ${LIB_PATH} \" -I\" ${LIB_PATH} /utility\" ${COMPILE_FLAGS} "
55
+ COMPILE_FLAGS "${ARDUINO_COMPILE_FLAGS} ${LIB_INCLUDES_SPACE_SEPARATED } -I\" ${LIB_PATH} \" -I\" ${LIB_PATH} /utility\" ${COMPILE_FLAGS} "
56
56
LINK_FLAGS "${ARDUINO_LINK_FLAGS} ${LINK_FLAGS} " )
57
57
list (APPEND LIB_INCLUDES "-I\" ${LIB_PATH} \" ;-I\" ${LIB_PATH} /utility\" " )
58
58
You can’t perform that action at this time.
0 commit comments