aboutsummaryrefslogtreecommitdiffstats
path: root/clox
diff options
context:
space:
mode:
authorGravatar Tom Willemse2021-07-22 01:09:45 -0700
committerGravatar Tom Willemse2021-07-22 01:09:45 -0700
commit79c1056553e5150cbdb12e52a19603fd33c3e517 (patch)
tree7aeb686de8a450d075e984bcde76f055d26f2323 /clox
parent50473e5ab573d85b1a555874332f6aecdd36f659 (diff)
downloadcrafting-interpreters-79c1056553e5150cbdb12e52a19603fd33c3e517.tar.gz
crafting-interpreters-79c1056553e5150cbdb12e52a19603fd33c3e517.zip
Generate the compilation database through CMake
Use an Emacs directory-local variable to specify to ccls where the compilation directory lives, tell CMake to generate the compilation database, and remove bear from the environment. Add clang to the environment for clang-format.
Diffstat (limited to 'clox')
-rw-r--r--clox/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/clox/CMakeLists.txt b/clox/CMakeLists.txt
index fb44875..aa285e1 100644
--- a/clox/CMakeLists.txt
+++ b/clox/CMakeLists.txt
@@ -2,4 +2,6 @@ cmake_minimum_required(VERSION 2.19)
project(Lox C)
+set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
+
add_subdirectory(src)