cmake_minimum_required(VERSION 3.0)

add_subdirectory(src/plugins)

project(game)

add_executable(game
  src/game.c)

target_include_directories(game PRIVATE
  src/)

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