Skip to content

Commit 0b9c6d9

Browse files
KonijnendijkCylix
authored andcommitted
Fix TACOPIE_CMAKE_ARGS getting converted to a string instead of a list (#78)
1 parent 8a2f2fc commit 0b9c6d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ IF (NOT USE_CUSTOM_TCP_CLIENT)
172172
set(TACOPIE_CMAKE_ARGS "-DCMAKE_INSTALL_PREFIX=${PROJECT_SOURCE_DIR}/deps")
173173
# For windows, forward the runtime environment configuration
174174
IF (WIN32)
175-
set(TACOPIE_CMAKE_ARGS "${TACOPIE_CMAKE_ARGS} -DMSVC_RUNTIME_LIBRARY_CONFIG=${MSVC_RUNTIME_LIBRARY_CONFIG}")
175+
set(TACOPIE_CMAKE_ARGS ${TACOPIE_CMAKE_ARGS} "-DMSVC_RUNTIME_LIBRARY_CONFIG=${MSVC_RUNTIME_LIBRARY_CONFIG}")
176176
ENDIF (WIN32)
177177

178178
# Add tacopie as dependency

0 commit comments

Comments
 (0)