From 1d0767022dfa1cb9a7346dcf0285908549614646 Mon Sep 17 00:00:00 2001 From: ProphesorIks <33833914+ProphesorIks@users.noreply.github.com> Date: Mon, 10 May 2021 01:51:37 +0300 Subject: [PATCH] ~Updated project version (#1761) Updated to fix versioning and linking issues. Old version would cause examples to not be linked on fresh raylib install or linked with an old library version on updated raylib install. --- src/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d1d80652b..38ca3f404 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,7 +1,7 @@ # Setup the project and settings project(raylib C) -set(PROJECT_VERSION 3.5.0) -set(API_VERSION 351) +set(PROJECT_VERSION 3.7.0) +set(API_VERSION 370) include(GNUInstallDirs) include(JoinPaths)