reorg + selfmanage externals

This commit is contained in:
2024-02-04 13:03:28 +01:00
parent 2d73c7272c
commit 9ca6adee4f
6 changed files with 87 additions and 12 deletions

13
external/CMakeLists.txt vendored Normal file
View File

@ -0,0 +1,13 @@
cmake_minimum_required(VERSION 3.24 FATAL_ERROR)
include(FetchContent)
if (NOT TARGET EnTT::EnTT)
FetchContent_Declare(EnTT
GIT_REPOSITORY https://github.com/skypjack/entt.git
GIT_TAG v3.12.2
EXCLUDE_FROM_ALL
)
FetchContent_MakeAvailable(EnTT)
endif()