summaryrefslogtreecommitdiff
path: root/gltfview/CMakeLists.txt
blob: de745ce2642566abe5c77a7e3c6b693a76e6cb7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
cmake_minimum_required(VERSION 3.0)

add_subdirectory(src/plugins)

project(gltfview)

add_executable(gltfview
  src/game.c
  src/main.c)

target_include_directories(gltfview PRIVATE
  src/)

target_link_libraries(gltfview PRIVATE
  cstring
  error
  gfx
  gfx-app
  list
  log
  math
  mempool
  plugin)