King_DuckZ
1917de87f4
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.
12 lines
281 B
CMake
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
|
|
)
|