diff --git a/3rdParty/CMakeLists.txt b/3rdParty/CMakeLists.txt index f76cbe2..eb47921 100644 --- a/3rdParty/CMakeLists.txt +++ b/3rdParty/CMakeLists.txt @@ -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() diff --git a/3rdParty/eastl/CMakeLists.txt b/3rdParty/eastl/CMakeLists.txt new file mode 100644 index 0000000..e95a106 --- /dev/null +++ b/3rdParty/eastl/CMakeLists.txt @@ -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)