diff options
author | sanine <sanine.not@pm.me> | 2022-08-22 12:39:51 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-08-22 12:39:51 -0500 |
commit | b2c0dd12d2a39e74f8e6d63bffec073ef0871ea7 (patch) | |
tree | 743d7981669e242898af107871c41f65ee7d75ac /src/gl/CMakeLists.txt | |
parent | 249833947ff691dd79453c4d817387a6922236d6 (diff) |
add uniforms
Diffstat (limited to 'src/gl/CMakeLists.txt')
-rw-r--r-- | src/gl/CMakeLists.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gl/CMakeLists.txt b/src/gl/CMakeLists.txt new file mode 100644 index 0000000..f995ef5 --- /dev/null +++ b/src/gl/CMakeLists.txt @@ -0,0 +1,12 @@ +project(honey_engine) + +set (GL ${CMAKE_CURRENT_LIST_DIR}) + +target_sources(honey PUBLIC + ${GL}/data.c + ${GL}/drawing.c + ${GL}/shader.c + ${GL}/window.c + ${GL}/gl.c + ${GL}/glad/glad.c +) |