Browse Source

Update version

pull/2622/head
Ray 2 years ago
parent
commit
4492e64cb5
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      projects/CMake/CMakeLists.txt
  2. BIN
      projects/VS2019/raylib/raylib.rc
  3. +2
    -2
      src/CMakeLists.txt

+ 1
- 1
projects/CMake/CMakeLists.txt View File

@ -5,7 +5,7 @@ project(example)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# Dependencies # Dependencies
find_package(raylib 4.0.0 QUIET) # QUIET or REQUIRED
find_package(raylib 4.2.0 QUIET) # QUIET or REQUIRED
if (NOT raylib_FOUND) # If there's none, fetch and build raylib if (NOT raylib_FOUND) # If there's none, fetch and build raylib
include(FetchContent) include(FetchContent)
FetchContent_Declare( FetchContent_Declare(

BIN
projects/VS2019/raylib/raylib.rc View File


+ 2
- 2
src/CMakeLists.txt View File

@ -1,7 +1,7 @@
# Setup the project and settings # Setup the project and settings
project(raylib C) project(raylib C)
set(PROJECT_VERSION 4.0.0)
set(API_VERSION 400)
set(PROJECT_VERSION 4.2.0)
set(API_VERSION 420)
include(GNUInstallDirs) include(GNUInstallDirs)
include(JoinPaths) include(JoinPaths)

Loading…
Cancel
Save