From 41494d4134f75668238145bc3a04722d372cec2e Mon Sep 17 00:00:00 2001 From: Kitling Date: Fri, 4 Sep 2015 20:13:15 -0700 Subject: [PATCH] Remember that 'PUBLIC' isn't necessary... --- externals/glad/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/externals/glad/CMakeLists.txt b/externals/glad/CMakeLists.txt index 1ddb821a9..c69f3de0b 100644 --- a/externals/glad/CMakeLists.txt +++ b/externals/glad/CMakeLists.txt @@ -10,5 +10,5 @@ create_directory_groups(${SRCS} ${HEADERS}) add_library(glad STATIC ${SRCS} ${HEADERS}) target_include_directories(glad PUBLIC "include/") if (LINUX) - target_link_libraries(glad PUBLIC dl) + target_link_libraries(glad PRIVATE dl) endif()