14 lines
340 B
CMake
14 lines
340 B
CMake
# Copyright (c) 2025 Dominic Masters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
include(FetchContent)
|
|
|
|
# RayLib
|
|
FetchContent_Declare(
|
|
raylib
|
|
GIT_REPOSITORY https://github.com/raysan5/raylib
|
|
GIT_TAG 5aa3f0ccc374c1fbfc880402b37871b9c3bb7d8e
|
|
)
|
|
FetchContent_MakeAvailable(raylib) |