astar/cmake/lib/raylib-cpp.cmake

13 lines
316 B
CMake
Raw Permalink Normal View History

cmake_minimum_required(VERSION 3.14.0)
include(FetchContent)
#find_package(raylib_cpp QUIET)
if (NOT raylib_cpp_FOUND)
FetchContent_Declare(raylib_cpp
GIT_REPOSITORY https://github.com/RobLoach/raylib-cpp.git
GIT_TAG v5.0.0 # 08-12-2023
)
FetchContent_MakeAvailable(raylib_cpp)
endif()