aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/CMakeLists.txt
blob: af212223bdcdb2718d9e03dbf351ea4ad984e2d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
  compiler.h
  compiler.c
  scanner.h
  scanner.c
  main.c)

install(TARGETS Lox)