Simple cross-platform login and register program with little features.
In linux, compile with:
g++ -o program login_registration.cpp
And run using:
./program
In windows, compile with:
g++ login_registration.cpp -o program.exe
This will create an executable file program.exe, you can run just clicking on it or running:
./program.exe
Basic animation of the insertion sort algorithm using the SFML library.
In windows, compile with:
g++ -Isrc/include -c main.cpp
Now, you must link the compiled file to the SFML libraries in order to get the final executable with the following command:
g++ main.o -o insertionSort -Lsrc/lib -lsfml-graphics -lsfml-window -lsfml-system
Run it with:
./insertionSort.exe