From 520e4e67cd9ff53f3c3512c80d07193625e07e3e Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Fri, 16 Jun 2023 09:38:15 -0700 Subject: New plugin architecture. --- gltfview/src/plugins/CMakeLists.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 gltfview/src/plugins/CMakeLists.txt (limited to 'gltfview/src/plugins/CMakeLists.txt') diff --git a/gltfview/src/plugins/CMakeLists.txt b/gltfview/src/plugins/CMakeLists.txt new file mode 100644 index 0000000..ecb2a45 --- /dev/null +++ b/gltfview/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