👥 Authors : Aaron Gabriel Silerio & Angelo Rodelas
- gcc compiler
- Cmake
- curses (linux)
- CMake tools (optional)
clone the repo
git clone https://github.com/yam-1111/atm
create a new folder name build
mkdir build
change directory to build
folder
cd build
generate build files using MinGW Makefiles
cmake -G "MinGW Makefiles" ..
run the command below to have executable program
make
run the program, if the exe
file located in build
folder
./build/atm2
you can install cmake tools on VSCODE
click the build button on the status bar in VSCODE
select the build with gcc 8.x.x
run the executable program
./atm2
install the curses.h
library
sudo apt install libncurses5-dev -y
install the cmake, if you dont have.
sudo apt install cmake -y
navigate to the directory and build it with cmake
cd atm
cmake .
make
run the program
./atm2