Files
OpenVulkano/3rdParty/eastl/CMakeLists.txt
Georg Hagen f457020f5e Add EASTL
2024-11-29 00:21:46 +01:00

15 lines
303 B
CMake

include(FetchContent)
if(NOT DEFINED EASTL_REPO)
set(EASTL_REPO https://github.com/electronicarts/EASTL)
endif ()
FetchContent_Declare(
eastl
EXCLUDE_FROM_ALL
GIT_REPOSITORY ${EASTL_REPO}
GIT_TAG 3.21.23
GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(eastl)