diff options
Diffstat (limited to 'src/gl/CMakeLists.txt')
-rw-r--r-- | src/gl/CMakeLists.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/gl/CMakeLists.txt b/src/gl/CMakeLists.txt new file mode 100644 index 0000000..c1c3db0 --- /dev/null +++ b/src/gl/CMakeLists.txt @@ -0,0 +1,20 @@ +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}/texture.c + ${GL}/gl.c + ${GL}/glad/glad.c +) + + +target_sources(test PUBLIC + ${GL}/glad/glad.c + ${GL}/gl.test.c + ${GL}/window.test.c +) |