Skip to content

Update README.md

Update README.md #25

Workflow file for this run

name: macOS Build
on: [push]
jobs:
build:
name: macos-build
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: install wxwidgets
run: |
brew install cmake tbb
git clone https://github.com/wxWidgets/wxWidgets.git --recurse-submodules
cd wxWidgets
mkdir build-cocoa
cd build-cocoa
../configure --enable-debug
make -j4
sudo make install
cd ..
cd ..
- name: build
run: |
cd demo
cmake ./
make -j4