diff --git a/projects/CMake/CMakeLists.txt b/projects/CMake/CMakeLists.txt index 6a530377..f645bdf3 100644 --- a/projects/CMake/CMakeLists.txt +++ b/projects/CMake/CMakeLists.txt @@ -17,11 +17,14 @@ endif() # raylib-cpp find_package(raylib_cpp QUIET) if (NOT raylib_cpp_FOUND) + if (NOT DEFINED RAYLIB_CPP_VERSION) + set(RAYLIB_CPP_VERSION v5.0.1) + endif() 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} ) FetchContent_MakeAvailable(raylib_cpp) endif()