summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortastytea2020-01-04 11:46:34 +0100
committertastytea2020-01-04 11:46:34 +0100
commitc77a68930c5361e2f79df0fc7c5c874fa8d7e8c1 (patch)
tree4ea22e18c9f68980c89653179bbbf7734948cd5c
parentfe91665b82378dd084acb6f4264cc967e813fa50 (diff)
downloadmastodonpp-c77a68930c5361e2f79df0fc7c5c874fa8d7e8c1.tar
mastodonpp-c77a68930c5361e2f79df0fc7c5c874fa8d7e8c1.tar.gz
mastodonpp-c77a68930c5361e2f79df0fc7c5c874fa8d7e8c1.zip
Change linking of curl to PUBLIC.
-rw-r--r--src/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index b2a0554..8bc8557 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -25,7 +25,7 @@ target_include_directories(${PROJECT_NAME}
"$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>")
target_link_libraries(${PROJECT_NAME}
- PRIVATE CURL::libcurl)
+ PUBLIC CURL::libcurl)
install(TARGETS ${PROJECT_NAME}