diff options
author | 3gg <3gg@shellblade.net> | 2025-06-27 10:13:51 -0700 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2025-06-27 10:13:51 -0700 |
commit | 03d94f3762ab576ba0675abcaefde888a9da2c3d (patch) | |
tree | 7a63946bca63e6d3043cbba50f6e4d63e59c4d80 /src/plugins/CMakeLists.txt |
Initial commit
Diffstat (limited to 'src/plugins/CMakeLists.txt')
-rw-r--r-- | src/plugins/CMakeLists.txt | 29 |
1 files changed, 29 insertions, 0 deletions
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 @@ | |||
1 | cmake_minimum_required(VERSION 3.0) | ||
2 | |||
3 | project(plugins) | ||
4 | |||
5 | set(LINK_LIBRARIES cstring math gfx gfx-app) | ||
6 | |||
7 | # Viewer | ||
8 | |||
9 | add_library(viewer SHARED | ||
10 | viewer.c) | ||
11 | |||
12 | target_link_libraries(viewer PUBLIC | ||
13 | ${LINK_LIBRARIES}) | ||
14 | |||
15 | # Texture viewer | ||
16 | |||
17 | add_library(texture_view SHARED | ||
18 | texture_view.c) | ||
19 | |||
20 | target_link_libraries(texture_view PUBLIC | ||
21 | ${LINK_LIBRARIES}) | ||
22 | |||
23 | # Pong | ||
24 | |||
25 | add_library(pong SHARED | ||
26 | pong.c) | ||
27 | |||
28 | target_link_libraries(pong PUBLIC | ||
29 | ${LINK_LIBRARIES}) | ||