diff options
Diffstat (limited to 'externals/glad/CMakeLists.txt')
| -rw-r--r-- | externals/glad/CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/externals/glad/CMakeLists.txt b/externals/glad/CMakeLists.txt new file mode 100644 index 000000000..ebc5db1f2 --- /dev/null +++ b/externals/glad/CMakeLists.txt | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | set(SRCS | ||
| 2 | src/glad.c | ||
| 3 | ) | ||
| 4 | set(HEADERS | ||
| 5 | include/KHR/khrplatform.h | ||
| 6 | include/glad/glad.h | ||
| 7 | ) | ||
| 8 | |||
| 9 | create_directory_groups(${SRCS} ${HEADERS}) | ||
| 10 | add_library(glad STATIC ${SRCS} ${HEADERS}) | ||
| 11 | target_include_directories(glad PUBLIC "include/") | ||