aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/CMakeLists.txt
blob: 435a82e98abda4c2bd284a3b7494ed242a4bd929 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)