Skip to content

Latest commit

 

History

History
executable file
·
50 lines (37 loc) · 1.44 KB

README.md

File metadata and controls

executable file
·
50 lines (37 loc) · 1.44 KB

Arculator

An advanced terminal based calculator and converter written in C++.

Building and Running

Cmake (recommended)

cd build
cmake ..
make
./arculator

If you want faster builds, use the -jthreadcount flag on the "make" (third) step:

make -j2000

G++

There's a build script for g++ building inside the build folder.

cd build
./build.sh
./arculator

If you encounter permission issues, just run the chmod command to make the build script executable (already made by me but in case):

chmod 755 build.sh

Features

Conversion

Arculator offers a conversion mode (inpired by Windows' built-in calculator) which has options like Volume, Length, Temperature and others.

Roadmap

  • Complete all unit conversions.
  • Add standard calculating ability.
  • Submit to package managers such as Homebrew for easier usage and convert to a proper command line tool.

Contributing

Arculator is totally open for contributions from everyone. Make sure to check out the Code of Conduct and the Contributing Guidelines before your contributions.

License

This projects is licensed under the MIT License.