trotFunky
60770b5395
Rules can be created from the UI Game can be stopped/started from the UI Current level can be reset (Load from file again) Added "Game" target and main file TODO (A lot): - Unit tests - Fully functionnal UI - Win conditions - Level background - Level switching/progression - Interesting and varied rules - Multi-scale pathfinding - etc
12 lines
No EOL
312 B
CMake
12 lines
No EOL
312 B
CMake
cmake_minimum_required(VERSION 3.14)
|
|
project(project_maat)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake_modules" ${CMAKE_MODULE_PATH})
|
|
|
|
add_executable(game main.cpp)
|
|
|
|
target_include_directories(game PRIVATE ${PROJECT_SOURCE_DIR}/../src)
|
|
|
|
target_link_libraries(game
|
|
engine) |