This project is a c++ games box made witf SFML library.
- SFML 2.4.2
- g++
- Installing SFML
sudo apt-get install libsfml-dev
- Download this Repo
- Go to the required game directory for example you wanna run cards game
cd GamesLib/cards
- Compile the file
g++ -c main.cpp
- Link the compiled file to the SFML libraries
g++ main.o -o card-game -lsfml-graphics -lsfml-window -lsfml-system
- Execute the compiled program
/card-game