blob: e5abbb8e4430d08f5b39194c616a4dfb5a99d757 (
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)
# GLTF viewer
add_library(gltf_view SHARED
gltf_view.c)
target_link_libraries(gltf_view 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})
|