Update README.md #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux Build | |
on: [push] | |
jobs: | |
build: | |
name: ubuntu-build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: install wxwidgets | |
run: | | |
sudo apt install libgtk-3-dev cmake libtbb-dev | |
git clone https://github.com/wxWidgets/wxWidgets.git --recurse-submodules | |
cd wxWidgets | |
mkdir buildgtk | |
cd buildgtk | |
../configure --with-gtk | |
make -j4 | |
sudo make install | |
sudo ldconfig | |
cd .. | |
cd .. | |
- name: build | |
run: | | |
cd demo | |
cmake ./ | |
make -j4 |