Explorar el Código

generate compile_commands.json to be used by language server (#2481)

* cmake: Generate compile commands

* Update README.md

simplify build process
pull/2485/head
Angga Permana hace 3 años
cometido por GitHub
padre
commit
d3caee0e72
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 2 ficheros con 5 adiciones y 4 borrados
  1. +3
    -0
      projects/CMake/CMakeLists.txt
  2. +2
    -4
      projects/CMake/README.md

+ 3
- 0
projects/CMake/CMakeLists.txt Ver fichero

@ -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

+ 2
- 4
projects/CMake/README.md Ver fichero

@ -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

Cargando…
Cancelar
Guardar