From 2c007a8f94d65dc40f638b284db7e374a58b632f Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 8 Jul 2021 02:24:24 -0700 Subject: Chapter 14.1-6 --- clox/src/CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 clox/src/CMakeLists.txt (limited to 'clox/src/CMakeLists.txt') 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) -- cgit v1.2.3-54-g00ecf