diff options
author | sanine <sanine.not@pm.me> | 2022-03-01 22:42:10 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-03-01 22:42:10 -0600 |
commit | 10288765588673645c1cc0a6e3d2245aff3f9080 (patch) | |
tree | 3a56953535c3e26156b41331631d51e25ff6bdb9 /CMakeLists.txt | |
parent | 9c238237597de90c73cc65c3fccf2f49bfaa46b4 (diff) |
add basic window functions, option parsing, and main loop
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3dec1d7..4e9bf22 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,6 +19,7 @@ add_library(glad ${SRC_ROOT}/gl/glad/glad.c) set(HONEY_LIB_FILES ${SRC_ROOT}/logging/logging.c ${SRC_ROOT}/gl/honey_gl.c + ${SRC_ROOT}/options/honey_options.c ) set(SOURCE_FILES @@ -28,7 +29,7 @@ set(SOURCE_FILES add_executable(honey ${SOURCE_FILES}) -set(LIBRARIES ${LUA_LIBRARIES} assimp glad cairo stb_image m) +set(LIBRARIES ${LUA_LIBRARIES} honeysuckle glad cairo m) if (WIN32) set(LIBRARIES ${LIBRARIES} glfw3 opengl32) else() |