instructed/tilemap/examples/CMakeLists.txt
szdytom afc8d8fa1c
feat: add coal generation
Signed-off-by: szdytom <szdytom@qq.com>
2025-08-03 21:21:37 +08:00

10 lines
317 B
CMake

cmake_minimum_required(VERSION 3.27)
# Examples for the tilemap library
# Each example is built as a separate executable
# Tilemap system demonstration
add_executable(tilemap_demo tilemap_demo.cpp)
target_link_libraries(tilemap_demo PRIVATE istd_tilemap)
target_include_directories(tilemap_demo PRIVATE ../include)