This project is a test to learn the SFML API. The overall goal of this project is to make a simple platformer.
- Define Goals
- Make Better README
- Define better build chain
This project uses the atom build package to build the project. If you don't want to use atom these are the compile instructions (Requires the g++ compiler).
g++ -c src/*.cpp -std=c++14 -m64 -g -Wall -I include && g++ *.o -o build/debug/main -lsfml-graphics -lsfml-window -lsfml-system -ljsoncpp
g++ -c src/*.cpp -std=c++14 -m64 -O3 -g -Wall -I include && g++ *.o -o build/release/main -s -lsfml-graphics -lsfml-window -lsfml-system -ljsoncpp