disgaea_solver/CMakeLists.txt
King_DuckZ 1917de87f4 Wrote a function that simulates the destruction of a geoblock.
Pass it the index of the block in state that would be destroyed.
The function will return whatever is left in state after triggering
the destruction of said block.
2017-07-19 22:00:15 +01:00

12 lines
281 B
CMake

cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
list (APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake-d/cmake-d)
project(disgaea_solver D)
add_executable(${PROJECT_NAME}
src/main.d
src/disgaea_solve.d
)
target_include_directories(${PROJECT_NAME}
PUBLIC src
)