Scientific calculator using reverse polish notation with complementary feature to write and execute user-written program easily.
- C++ compiler (gcc, g++, ...)
- Qt5
- Cmake
- SQLite
To install qt5, go here to download zip file and follow instructions on their page. For C++, Cmake and their dependencies, use following command:
sudo apt-get install cmake g++
mkdir build && cd build && cmake .. && cd ..
cmake -S . -B build
cmake --build build
The executable file will be in the build directory:
build/RPN_Calculator