summaryrefslogtreecommitdiffhomepage
path: root/projects/CMake
diff options
context:
space:
mode:
Diffstat (limited to 'projects/CMake')
-rw-r--r--projects/CMake/CMakeLists.txt3
-rw-r--r--projects/CMake/README.md6
2 files changed, 5 insertions, 4 deletions
diff --git a/projects/CMake/CMakeLists.txt b/projects/CMake/CMakeLists.txt
index 580ecfed..12af1c54 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
diff --git a/projects/CMake/README.md b/projects/CMake/README.md
index 402d3170..f7873c30 100644
--- a/projects/CMake/README.md
+++ b/projects/CMake/README.md
@@ -11,10 +11,8 @@ To compile the example, use one of the following dependending on your build targ
Use the following to build for desktop:
``` bash
-mkdir build
-cd build
-cmake ..
-make
+cmake -B build
+cmake --build build
```
### Web