From 3cd5b0bcca694630fcb4b977ddf7be7cd1bce153 Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Sat, 20 Jan 2024 15:54:54 -0800 Subject: Rename gltfview -> game. --- game/CMakeLists.txt | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 game/CMakeLists.txt (limited to 'game/CMakeLists.txt') diff --git a/game/CMakeLists.txt b/game/CMakeLists.txt new file mode 100644 index 0000000..3a88bb7 --- /dev/null +++ b/game/CMakeLists.txt @@ -0,0 +1,22 @@ +cmake_minimum_required(VERSION 3.0) + +add_subdirectory(src/plugins) + +project(game) + +add_executable(game + src/game.c) + +target_include_directories(game PRIVATE + src/) + +target_link_libraries(game PRIVATE + cstring + error + gfx + gfx-app + list + log + math + mempool + plugin) -- cgit v1.2.3