Skip to content

ghidella/cpp-projects

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Personal projects for C++ study

Simple cross-platform login and register program with little features.

Instructions

Linux

In linux, compile with:

g++ -o program login_registration.cpp

And run using:

./program
Windows

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.

Instructions

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

About

Personal projects for c++ study

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published