From 1e3fcf5b38d67fb54102786be74af42be5c6792f Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Tue, 3 Jan 2023 08:49:54 -0800 Subject: Initial commit. --- gfx-app/CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 gfx-app/CMakeLists.txt (limited to 'gfx-app/CMakeLists.txt') diff --git a/gfx-app/CMakeLists.txt b/gfx-app/CMakeLists.txt new file mode 100644 index 0000000..d9cb80f --- /dev/null +++ b/gfx-app/CMakeLists.txt @@ -0,0 +1,14 @@ +cmake_minimum_required(VERSION 3.0) + +project(gfx-app) + +add_library(gfx-app + src/gfx_app.c) + +target_include_directories(gfx-app PUBLIC + include/) + +target_link_libraries(gfx-app PUBLIC + glfw + log + timer) -- cgit v1.2.3