dusk/lib/CMakeLists.txt
2025-04-07 17:57:06 -05:00

14 lines
303 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 5.5
)
FetchContent_MakeAvailable(raylib)