diff options
author | sanine-a <sanine.not@pm.me> | 2020-05-20 22:40:44 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2020-05-20 22:40:44 -0500 |
commit | c3a41085272644709d891bf04137a6c2bd901230 (patch) | |
tree | 24a6b7e82af426428741f3f9cf2976509e9769c4 /CMakeLists.txt | |
parent | c6ec37cd355b313083af5be3435162224020fe5e (diff) |
add overridable update() and draw() callbacks
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8bf34bb..c78eafa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ add_executable(honey_engine_demo demo.c) set(CMAKE_C_FLAGS "-g") -add_library(honey src/honey_setup.c src/texture.c src/shader.c src/mesh.c) +add_library(honey src/honey.c src/texture.c src/shader.c src/mesh.c) add_library(glad src/glad.c) add_library(stb_image src/stb_image.c) |