diff options
Diffstat (limited to 'game/src/plugins/CMakeLists.txt')
-rw-r--r-- | game/src/plugins/CMakeLists.txt | 29 |
1 files changed, 0 insertions, 29 deletions
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 @@ | |||
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}) | ||