instructed/third_party/entt.cmake
2025-08-04 14:05:00 +08:00

13 lines
320 B
CMake

cmake_minimum_required(VERSION 3.27)
cmake_policy(VERSION 3.27)
include(FetchContent)
# EnTT third-party library setup
message(STATUS "Downloading EnTT...")
FetchContent_Declare(
EnTT
URL "https://github.com/skypjack/entt/archive/refs/tags/v3.15.0.zip"
)
FetchContent_MakeAvailable(EnTT)
message(STATUS "EnTT ready")