summaryrefslogtreecommitdiffhomepage
path: root/projects/CMake/README.md
diff options
context:
space:
mode:
authorAngga Permana <[email protected]>2022-05-19 18:18:12 +0700
committerGitHub <[email protected]>2022-05-19 13:18:12 +0200
commitd3caee0e723d6b8dd44f418447518045c90c5f95 (patch)
tree6f181097f66eadead8b855c3c817b4a5f09f83d9 /projects/CMake/README.md
parent6259dc4121bf5a5316491f8495f8fff6e054a215 (diff)
downloadraylib-d3caee0e723d6b8dd44f418447518045c90c5f95.tar.gz
raylib-d3caee0e723d6b8dd44f418447518045c90c5f95.zip
generate compile_commands.json to be used by language server (#2481)
* cmake: Generate compile commands * Update README.md simplify build process
Diffstat (limited to 'projects/CMake/README.md')
-rw-r--r--projects/CMake/README.md6
1 files changed, 2 insertions, 4 deletions
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