Skip to content

Update README.md

Update README.md #135

Workflow file for this run

name: Build C++
on:
push:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup MSBuild
uses: microsoft/[email protected]
- name: Install vcpkg
run: |
git clone https://github.com/microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh
vcpkg integrate install
vcpkg install tinyxml2
vcpkg install libzippp
vcpkg install opencv
- name: Build Solution
run: msbuild Charcoal/Charcoal.sln /p:Configuration=Debug