From bd57f345ed9dbed1d81683e48199626de2ea9044 Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Fri, 27 Jun 2025 10:18:39 -0700 Subject: Restructure project --- game/src/plugins/CMakeLists.txt | 29 ----------------------------- 1 file changed, 29 deletions(-) delete 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 deleted file mode 100644 index 8661598..0000000 --- a/game/src/plugins/CMakeLists.txt +++ /dev/null @@ -1,29 +0,0 @@ -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