blob: 8661598a06e958b087121a499e9be1466af3172f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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})
 
  |