summaryrefslogtreecommitdiff
path: root/externals/glad
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-01-17 19:37:34 -0500
committerLioncash <mathew1800@gmail.com>2018-01-17 21:51:43 -0500
commite710a1b9894d835d740ed63c03098fd637f61f63 (patch)
tree7585a15cdf38ea2913a847c738c84e769e43ea77 /externals/glad
parentee08c39b7251c6a037014b503ecf70ebf8dc5ed5 (diff)
CMakeLists: Derive the source directory grouping from targets themselves
Removes the need to store to separate SRC and HEADER variables, and then construct the target in most cases.
Diffstat (limited to 'externals/glad')
-rw-r--r--externals/glad/CMakeLists.txt15
1 files changed, 6 insertions, 9 deletions
diff --git a/externals/glad/CMakeLists.txt b/externals/glad/CMakeLists.txt
index 6d35a844b..c43ae475a 100644
--- a/externals/glad/CMakeLists.txt
+++ b/externals/glad/CMakeLists.txt
@@ -1,13 +1,10 @@
-set(SRCS
- src/glad.c
- )
-set(HEADERS
- include/KHR/khrplatform.h
- include/glad/glad.h
- )
+add_library(glad STATIC
+ src/glad.c
+ include/KHR/khrplatform.h
+ include/glad/glad.h
+)
-create_directory_groups(${SRCS} ${HEADERS})
-add_library(glad STATIC ${SRCS} ${HEADERS})
+create_target_directory_groups(glad)
target_include_directories(glad PUBLIC "include/")
if ("${CMAKE_SYSTEM_NAME}" MATCHES "Linux")