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

install(TARGETS Lox)