mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-12-04 19:23:28 +01:00
25 lines
389 B
CMake
25 lines
389 B
CMake
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
|
|
|
|
project(tilemap CXX)
|
|
|
|
add_library(tilemap
|
|
./src/mm/tilemap.hpp
|
|
./src/mm/tilemap.cpp
|
|
)
|
|
|
|
target_include_directories(tilemap PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src")
|
|
|
|
target_link_libraries(tilemap
|
|
filesystem_service
|
|
tilemap_render_task
|
|
)
|
|
|
|
##########################
|
|
|
|
# TODO: test!!
|
|
#if (BUILD_TESTING)
|
|
#add_subdirectory(test)
|
|
#endif()
|
|
|
|
|