summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-04-16 12:37:40 -0400
committerLioncash <mathew1800@gmail.com>2018-04-16 12:38:24 -0400
commit236aed9fd166108f7557a487eee13ec022cb4d1a (patch)
tree63983c0a004720529e5e23d017a39b7e4bd2f012
parent6224b9bd37488d6d4562e0df6bfbda39e4f011d1 (diff)
Common/CMakeLists: Link curl and VTune libraries in privately
These are only used internally.
-rw-r--r--Source/Core/Common/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/CMakeLists.txt b/Source/Core/Common/CMakeLists.txt
index 6ef614a325..1cbdb08c22 100644
--- a/Source/Core/Common/CMakeLists.txt
+++ b/Source/Core/Common/CMakeLists.txt
@@ -46,13 +46,13 @@ add_library(common
target_link_libraries(common
PUBLIC
${CMAKE_THREAD_LIBS_INIT}
- ${CURL_LIBRARIES}
enet
${MBEDTLS_LIBRARIES}
- ${VTUNE_LIBRARIES}
PRIVATE
+ ${CURL_LIBRARIES}
${ICONV_LIBRARIES}
+ ${VTUNE_LIBRARIES}
)
if (APPLE)