Add EASTL
This commit is contained in:
1
3rdParty/CMakeLists.txt
vendored
1
3rdParty/CMakeLists.txt
vendored
@@ -32,6 +32,7 @@ add_subdirectory(boost)
|
||||
add_subdirectory(units)
|
||||
add_subdirectory(libjpeg-turbo)
|
||||
add_subdirectory(msdf)
|
||||
add_subdirectory(eastl)
|
||||
if (NOT IOS AND ENABLE_CURL)
|
||||
add_subdirectory(curl)
|
||||
endif()
|
||||
|
||||
14
3rdParty/eastl/CMakeLists.txt
vendored
Normal file
14
3rdParty/eastl/CMakeLists.txt
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user