mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-11-11 01:33:03 +01:00
6 lines
208 B
CMake
6 lines
208 B
CMake
cmake_minimum_required(VERSION 3.2 FATAL_ERROR)
|
|
add_library(entt INTERFACE)
|
|
target_include_directories(entt INTERFACE "${CMAKE_CURRENT_LIST_DIR}/entt/src")
|
|
target_compile_features(entt INTERFACE cxx_std_17)
|
|
|