1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

CMake: use list(APPEND) instead of set

This commit is contained in:
Mathieu Schroeter 2017-10-20 17:41:40 +02:00
parent 433768147b
commit cce3961fc8

View File

@ -164,8 +164,7 @@ if ("${STATIC_BUILD}")
)
if (${PB_HTTP_VERSION_CHECK})
set (planetblupi_DEPS
${planetblupi_DEPS}
list (APPEND planetblupi_DEPS
${CURL_STATIC_LIBRARIES}
)
endif ()
@ -188,8 +187,7 @@ else ()
)
if (${PB_HTTP_VERSION_CHECK})
set (planetblupi_DEPS
${planetblupi_DEPS}
list (APPEND planetblupi_DEPS
${CURL_LIBRARIES}
)
endif ()