Browse Source

Update version

Ray 3 years ago
parent
commit
4492e64cb5
3 changed files with 3 additions and 3 deletions
  1. 1 1
      projects/CMake/CMakeLists.txt
  2. BIN
      projects/VS2019/raylib/raylib.rc
  3. 2 2
      src/CMakeLists.txt

+ 1 - 1
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(

BIN
projects/VS2019/raylib/raylib.rc


+ 2 - 2
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)