Windows Calculator on Apple

A Windows calculator ported to macOS with SwiftUI interface.

Standard Programmer

Build

Clone the project:

git clone --recursive https://github.com/qqaatw/win-calculator-on-apple.git

Install the prerequisite via Homebrew:

brew install cmake
# if you didn't select Xcode before, select the one you want to use.
sudo xcode-select -switch /Applications/Xcode.app

Build:

mkdir bulid && cd build
cmake .. -G Xcode  # generate Xcode project & configure compilers
cmake --build . --target Calculator  # build

The executable will be located in build/Debug/Calculator.app

Development

TODO list:

  1. UI improvement
  2. Adding scientific mode
  3. Unit testing
  4. CI/CD
  5. iOS support

GitHub

View Github