From 032cc497ca5aaca862dc926a93c2a45ed8017737 Mon Sep 17 00:00:00 2001 From: David Williams Date: Sat, 9 Dec 2023 10:33:12 -0800 Subject: [PATCH] Updating CMake version to 5.0 so libraries are correctly versioned (#3615) --- src/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4335bda5c..919efeb4d 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.5.0) -set(API_VERSION 450) +set(PROJECT_VERSION 5.0.0) +set(API_VERSION 500) include(GNUInstallDirs) include(JoinPaths)