Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 493 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 493 Bytes

CppND-System-Monitor

My Solution code for System Monitor Project in the C++ OOP course.

To setup and compile:

  1. Clone repo
git clone https://github.com/mprostock/CppND-System-Monitor
  1. Install ncurses package
sudo apt-get install libncurses5-dev libncursesw5-dev
  1. Compile and run
g++ -std="c++17" main.cpp -lncurses
./a.out

Or you can check out the original starter code from udacity:

git clone https://github.com/mprostock/CppND-System-Monitor