Build Instructions: Windows
(MAKE SURE CMAKE AND VISUAL STUDIO ARE INSTALLED!!!)
- Download or clone the repository
- Open to the root directory
- Open a new terminal instance and type the following commands
md build
cd build
cmake ..
cmake --build .
That's it! The file should generate as a Visual Stuido Solution file. From here you should just be able to right-click on FallingSand, set it as the startup project
and press play at the top!
Build Instruction: Linux & Mac
(MAKE SURE CMAKE IS INSTALLED)
- Download or clone the repository
- Open to the root directory
- Open a new terminal instance and type the following commands
mkdir build
cd build
cmake ..
cmake --build .
That's it actually! The file should be in the build directory
As per usual, made with ❤️ (and the occasional compile-time error)
- MrGuyMan99