Skip to content

tg_cpphost: decho cmd: Add video decho support #144

tg_cpphost: decho cmd: Add video decho support

tg_cpphost: decho cmd: Add video decho support #144

Workflow file for this run

name: Build tg_cpphost (Windows)
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include:
- sys: mingw32
- sys: mingw64
- sys: ucrt64
- sys: clang64
name: 🚧 ${{ matrix.sys }}
defaults:
run:
shell: msys2 {0}
steps:
- name: '🧰 Checkout'
uses: actions/[email protected]
with:
fetch-depth: 0
- name: 'Setup MSYS2'
uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
update: true
install: >-
git
make
pacboy: >-
toolchain:p
cmake:p
ninja:p
protobuf:p
boost:p
- name: 'Setup submodule'
run: |
git submodule update --init
- name: '🚧 Build tg_cpphost'
run: |
mkdir build
cmake -G Ninja -B build -DCMAKE_BUILD_TYPE=Release .
cmake --build build