From 4492e64cb52aba8312d11082bda14e61c846bafb Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 2 Aug 2022 09:27:13 +0200 Subject: [PATCH] Update version --- projects/CMake/CMakeLists.txt | 2 +- projects/VS2019/raylib/raylib.rc | Bin 4630 -> 4622 bytes src/CMakeLists.txt | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/CMake/CMakeLists.txt b/projects/CMake/CMakeLists.txt index 12af1c54..351b4809 100644 --- a/projects/CMake/CMakeLists.txt +++ b/projects/CMake/CMakeLists.txt @@ -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( diff --git a/projects/VS2019/raylib/raylib.rc b/projects/VS2019/raylib/raylib.rc index a7d8817df80206001e0af055194b5a7748876454..1bd86dc8faeee8fbbb011e13332db44ead7ca8e9 100644 GIT binary patch delta 53 zcmbQH(x27A@xyK0Sicc2f6Iv|B#{vM5 CY7L|S delta 42 scmeBEnWnO#kAu-*azBS5qrv8b9Q@3z1`K)(2AeN(^D{x24|#Q20Qyi0mH+?% diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index ceb9666e..21cd3d3f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -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)