summaryrefslogtreecommitdiff
path: root/app/CMakeLists.txt
blob: 7e6035140abf3af030db99476c4196bbda9de82c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
cmake_minimum_required(VERSION 3.0)

project(gfx-app)

add_library(gfx-app
  src/app.c)

target_include_directories(gfx-app PUBLIC
  include/)

target_link_libraries(gfx-app PUBLIC
  glfw
  log
  timer)