Simple cross-platform login and register program with little features.
In linux, compile with:
g++ -o program login_registration.cppAnd run using:
./programIn windows, compile with:
g++ login_registration.cpp -o program.exeThis will create an executable file program.exe, you can run just clicking on it or running:
./program.exeBasic animation of the insertion sort algorithm using the SFML library.
In windows, compile with:
g++ -Isrc/include -c main.cppNow, 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-systemRun it with:
./insertionSort.exe