Update version

This commit is contained in:
Ray 2022-08-02 09:27:13 +02:00
parent 191c340409
commit 4492e64cb5
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ project(example)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# 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
include(FetchContent)
FetchContent_Declare(

Binary file not shown.

View File

@ -1,7 +1,7 @@
# Setup the project and settings
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(JoinPaths)