From b131e343bb8a2b126a5370138d826d87d74fce30 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Mon, 2 Aug 2021 18:09:03 -0700 Subject: Chapter 16.1 --- clox/src/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'clox/src/CMakeLists.txt') diff --git a/clox/src/CMakeLists.txt b/clox/src/CMakeLists.txt index 12ad9ff..af21222 100644 --- a/clox/src/CMakeLists.txt +++ b/clox/src/CMakeLists.txt @@ -10,6 +10,10 @@ add_executable(Lox value.c vm.h vm.c + compiler.h + compiler.c + scanner.h + scanner.c main.c) install(TARGETS Lox) -- cgit v1.2.3-54-g00ecf