From 5e2fe7e2bfa0b17afb7c59ba48af8c339ab3e956 Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Sun, 16 Oct 2022 23:55:04 -0600 Subject: [PATCH] Lagom: Enable compile_commands.json for the lagom build directory This allows a developer who only wants to look at Lagom to have their IDE find source files and headers properly. --- Meta/Lagom/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Meta/Lagom/CMakeLists.txt b/Meta/Lagom/CMakeLists.txt index 5bb3d59089..6939c03ac6 100644 --- a/Meta/Lagom/CMakeLists.txt +++ b/Meta/Lagom/CMakeLists.txt @@ -89,6 +89,8 @@ else() endif() set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + set(CMAKE_INSTALL_MESSAGE NEVER) if (ENABLE_ADDRESS_SANITIZER)