From 03d94f3762ab576ba0675abcaefde888a9da2c3d Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Fri, 27 Jun 2025 10:13:51 -0700 Subject: Initial commit --- src/plugins/CMakeLists.txt | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/plugins/CMakeLists.txt (limited to 'src/plugins/CMakeLists.txt') diff --git a/src/plugins/CMakeLists.txt b/src/plugins/CMakeLists.txt new file mode 100644 index 0000000..8661598 --- /dev/null +++ b/src/plugins/CMakeLists.txt @@ -0,0 +1,29 @@ +cmake_minimum_required(VERSION 3.0) + +project(plugins) + +set(LINK_LIBRARIES cstring math gfx gfx-app) + +# Viewer + +add_library(viewer SHARED + viewer.c) + +target_link_libraries(viewer PUBLIC + ${LINK_LIBRARIES}) + +# Texture viewer + +add_library(texture_view SHARED + texture_view.c) + +target_link_libraries(texture_view PUBLIC + ${LINK_LIBRARIES}) + +# Pong + +add_library(pong SHARED + pong.c) + +target_link_libraries(pong PUBLIC + ${LINK_LIBRARIES}) -- cgit v1.2.3