summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRay <[email protected]>2022-08-02 09:27:13 +0200
committerRay <[email protected]>2022-08-02 09:27:13 +0200
commit4492e64cb52aba8312d11082bda14e61c846bafb (patch)
tree6eeeec56acca38fc1cad30e6a52993fba9f9ad17
parent191c340409e5e98acb6f4865487919e618880b46 (diff)
downloadraylib-4492e64cb52aba8312d11082bda14e61c846bafb.tar.gz
raylib-4492e64cb52aba8312d11082bda14e61c846bafb.zip
Update version
-rw-r--r--projects/CMake/CMakeLists.txt2
-rw-r--r--projects/VS2019/raylib/raylib.rcbin4630 -> 4622 bytes
-rw-r--r--src/CMakeLists.txt4
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 a7d8817d..1bd86dc8 100644
--- a/projects/VS2019/raylib/raylib.rc
+++ b/projects/VS2019/raylib/raylib.rc
Binary files differ
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)