21 lines
499 B
CMake
21 lines
499 B
CMake
find_package(raylib 3.5 QUIET)
|
|
|
|
if (NOT raylib_FOUND)
|
|
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
raylib
|
|
URL https://github.com/zpl-c/raylib/archive/master.tar.gz
|
|
)
|
|
|
|
FetchContent_GetProperties(raylib)
|
|
if (NOT raylib_POPULATED)
|
|
set(FETCHCONTENT_QUIET NO)
|
|
FetchContent_Populate(raylib)
|
|
|
|
set(BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
|
|
|
|
add_subdirectory(${raylib_SOURCE_DIR} ${raylib_BINARY_DIR})
|
|
endif()
|
|
endif()
|