From 1b6eb5be2b32bc64fcc67b270da872544ca7904d Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Thu, 14 Mar 2024 11:25:49 -0400 Subject: [PATCH] Update CMakeLists.txt Fixes #302 @Roy-Fokker something like this? --- projects/CMake/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/projects/CMake/CMakeLists.txt b/projects/CMake/CMakeLists.txt index 6a530377..9f824c26 100644 --- a/projects/CMake/CMakeLists.txt +++ b/projects/CMake/CMakeLists.txt @@ -17,11 +17,13 @@ endif() # raylib-cpp find_package(raylib_cpp QUIET) if (NOT raylib_cpp_FOUND) + set(RAYLIB_CPP_VERSION v5.0.1) include(FetchContent) FetchContent_Declare( raylib_cpp GIT_REPOSITORY https://github.com/RobLoach/raylib-cpp.git - GIT_TAG v5.0.1 + GIT_TAG ${RAYLIB_CPP_VERSION} + FIND_PACKAGE_ARGS NAMES raylib_cpp ) FetchContent_MakeAvailable(raylib_cpp) endif()