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/src/plugins/CMakeLists.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 game/src/plugins/CMakeLists.txt (limited to 'game/src/plugins/CMakeLists.txt') diff --git a/game/src/plugins/CMakeLists.txt b/game/src/plugins/CMakeLists.txt new file mode 100644 index 0000000..ecb2a45 --- /dev/null +++ b/game/src/plugins/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.0) + +project(plugins) + +set(LINK_LIBRARIES cstring math gfx) + +add_library(gltf_view SHARED + gltf_view.c) + +add_library(texture_view SHARED + texture_view.c) + +target_link_libraries(gltf_view PUBLIC + ${LINK_LIBRARIES}) + +target_link_libraries(texture_view PUBLIC + ${LINK_LIBRARIES}) -- cgit v1.2.3