9 lines
162 B
Text
9 lines
162 B
Text
|
cmake_minimum_required(VERSION 3.30)
|
||
|
project(VoxelSim)
|
||
|
|
||
|
set(CMAKE_CXX_STANDARD 23)
|
||
|
|
||
|
add_executable(VoxelSim main.cpp
|
||
|
simulation.cpp
|
||
|
simulation.h)
|