From abbf1b1198c12c110847ffc072902be933c21066 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Sun, 19 Mar 2023 06:13:17 -0400 Subject: [PATCH] [cmake] Update to raylib 4.5 (#264) --- projects/CMake/CMakeLists.txt | 6 +++--- projects/CMake/cmake/FindRaylib.cmake | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/projects/CMake/CMakeLists.txt b/projects/CMake/CMakeLists.txt index 1870232..56b4c6a 100644 --- a/projects/CMake/CMakeLists.txt +++ b/projects/CMake/CMakeLists.txt @@ -33,13 +33,13 @@ if(${BUILD_RAYGUI_EXAMPLES}) set(example_dirs controls_test_suite custom_file_dialog + custom_sliders image_exporter - image_raw_importer + image_importer_raw portable_window property_list scroll_panel - text_box_selection - text_editor + style_selector ) set(example_sources) diff --git a/projects/CMake/cmake/FindRaylib.cmake b/projects/CMake/cmake/FindRaylib.cmake index c5ae2ac..c8c3a64 100644 --- a/projects/CMake/cmake/FindRaylib.cmake +++ b/projects/CMake/cmake/FindRaylib.cmake @@ -1,10 +1,10 @@ -find_package(raylib 4.0.0 QUIET CONFIG) +find_package(raylib 4.5.0 QUIET CONFIG) if (NOT raylib_FOUND) include(FetchContent) FetchContent_Declare( raylib GIT_REPOSITORY https://github.com/raysan5/raylib.git - GIT_TAG 4.2.0 + GIT_TAG 4.5.0 ) FetchContent_GetProperties(raylib) if (NOT raylib_POPULATED) # Have we downloaded raylib yet?