aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/CMakeLists.txt
blob: 12ad9ff4101d645b964ecb7453fd1664719f85ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
add_executable(Lox
  common.h
  chunk.h
  chunk.c
  memory.h
  memory.c
  debug.h
  debug.c
  value.h
  value.c
  vm.h
  vm.c
  main.c)

install(TARGETS Lox)