mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-11-11 01:33:03 +01:00
18 lines
317 B
CMake
18 lines
317 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
project(resource_manager CXX)
|
|
|
|
add_library(resource_manager INTERFACE)
|
|
|
|
target_include_directories(resource_manager INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/src")
|
|
|
|
target_link_libraries(resource_manager INTERFACE
|
|
entt
|
|
logger
|
|
)
|
|
|
|
if (BUILD_TESTING)
|
|
add_subdirectory(test)
|
|
endif()
|
|
|
|
|