Skip to content

jdselsor/SFML-Platformer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SFML-Platformer

This project is a test to learn the SFML API. The overall goal of this project is to make a simple platformer.

Outline

TODO List

  • Define Goals
  • Make Better README
  • Define better build chain

Compile Instruction

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).

Debug

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

Release

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

About

A Platformer in SFML

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages