A simple scientific calculator.
Requirements:
- SFML 2.5+ headers and library
- C++11 compliant compiler
- CMake 3.0+ build system
To build the project environment you can use CMake and follow the example below:
git clone https://github.com/IgorSwat/Calculator
cd Calculator # Go to the project`s root directory
mkdir build
cd build
cmake -DSFML_DIR=<path to SFMLconfig.cmake> .. # eg. -DSFML_DIR=C:/SFML-2.5.1/lib/cmake/SFML
To compile and create executable you can use:
cmake --build .
, or a custom IDE.