Ver código fonte

Review latest PR #1003

pull/1007/head
Ray 6 anos atrás
pai
commit
64c588e9d8
2 arquivos alterados com 2 adições e 3 exclusões
  1. +0
    -2
      .gitignore
  2. +2
    -1
      projects/CMake/CMakeLists.txt

+ 0
- 2
.gitignore Ver arquivo

@ -1,8 +1,6 @@
# Ignore generated files # Ignore generated files
# ... # ...
.gitignore
# Ignore VIM's backup generated files # Ignore VIM's backup generated files
*.swp *.swp
*.swo *.swo

+ 2
- 1
projects/CMake/CMakeLists.txt Ver arquivo

@ -1,7 +1,8 @@
cmake_minimum_required(VERSION 3.11) # FetchContent is available in 3.11+ cmake_minimum_required(VERSION 3.11) # FetchContent is available in 3.11+
project(example) project(example)
find_package(raylib 2.0 QUIET) # Let CMake search for a raylib-config.cmake
# Set this to the minimal version you want to support
find_package(raylib 2.5 QUIET) # Let CMake search for a raylib-config.cmake
# You could change the QUIET above to REQUIRED and remove this if() clause # You could change the QUIET above to REQUIRED and remove this if() clause
# This part downloads raylib and builds it if it's not installed on your system # This part downloads raylib and builds it if it's not installed on your system

Carregando…
Cancelar
Salvar