A Windows calculator ported to macOS with SwiftUI interface.
Standard | Programmer |
---|---|
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
TODO list:
- UI improvement
- Adding scientific mode
- Unit testing
- CI/CD
- iOS support