aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'clox/src/CMakeLists.txt')
-rw-r--r--clox/src/CMakeLists.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/clox/src/CMakeLists.txt b/clox/src/CMakeLists.txt
new file mode 100644
index 0000000..6d7e73b
--- /dev/null
+++ b/clox/src/CMakeLists.txt
@@ -0,0 +1,11 @@
+add_executable(Lox
+ common.h
+ chunk.h
+ chunk.c
+ memory.h
+ memory.c
+ debug.h
+ debug.c
+ value.h
+ value.c
+ main.c)