A Personal Finance Control application created with C and my onw C-Utils header.
GCC(orMingw GCCfor Windows).CMaketo build the project.Ninja(orMingw Ninjafor Windows) to helpCMaketo make the executable file.
Windows:
- Press
Windows + R, typecmdand pressCtrl + Shift + Enter, then open it in administrator mode. - Type into cmd
winget install --id="Kitware.CMake" && winget install --id="MSYS2.MSYS2". - Now after install CMake and MSYS2 press
Windows + Rand typemingw64ormingw32for 32 bits, then pressCtrl + Shift + Enterto open it as an administrator. - Now on Mingw Shell type
pacman -Syyu && pacman -S mingw-w64-x86_64-gcc && pacman -S mingw-w64-x86_64-ninja. - Now you just need to build the project.
Linux:
- Install
GCC,CMake,Ninjawith the Package Manager of the Distribution. - Build the project.
macOS:
- Install a MacPort for your current macOS distro.
- Enter in terminal and type
sudo port selfupdate && sudo port install cmake gcc ninja.
- Create a directory named
./buildwith terminal. - Enter into the
./builddirectory. - Type
cmake .. -G Ninjain./builddirectory to make the./build/build.ninjafile. - Type
ninjain./buildto run./build/build.ninjaand create the compiled file named./build/bin/Executable.exe.
Created by: @paulao255.