From 09d34c697a488a8450161c62a601b04748098d96 Mon Sep 17 00:00:00 2001 From: sanine-a Date: Sat, 12 Dec 2020 21:55:48 -0600 Subject: add basic cairo bindings --- CMakeLists.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index dc5807a..1b11d68 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,6 +15,7 @@ add_library(stb_image src/stb_image/stb_image.c) set(SOURCE_FILES src/main.c + src/cairo_bindings.c src/glm_bindings.c src/glm_vec3_bindings.c src/glm_vec4_bindings.c @@ -29,10 +30,12 @@ set(SOURCE_FILES src/window.c) add_executable(honey ${SOURCE_FILES}) + +set(LIBRARIES ${LUA_LIBRARIES} assimp glad cairo stb_image m) if (WIN32) - set(LIBRARIES ${LUA_LIBRARIES} assimp glfw3 opengl32 glad stb_image m) + set(LIBRARIES ${LIBRARIES} glfw3 opengl32) else() - set(LIBRARIES ${LUA_LIBRARIES} assimp glfw GL glad stb_image dl m) + set(LIBRARIES ${LIBRARIES} glfw GL dl) endif() target_link_libraries(honey ${LIBRARIES}) -- cgit v1.2.1