From 5bfd0d2122666576d48eaab259404db154c6becf Mon Sep 17 00:00:00 2001 From: anggape Date: Mon, 16 May 2022 10:58:23 +0700 Subject: [PATCH] cmake: Generate compile commands --- projects/CMake/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/projects/CMake/CMakeLists.txt b/projects/CMake/CMakeLists.txt index 580ecfed2..12af1c543 100644 --- a/projects/CMake/CMakeLists.txt +++ b/projects/CMake/CMakeLists.txt @@ -1,6 +1,9 @@ cmake_minimum_required(VERSION 3.11) # FetchContent is available in 3.11+ project(example) +# Generate compile_commands.json +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + # Dependencies find_package(raylib 4.0.0 QUIET) # QUIET or REQUIRED if (NOT raylib_FOUND) # If there's none, fetch and build raylib