Skip to content

Add option to remove (common) ansi escape codes from on_write #166

Add option to remove (common) ansi escape codes from on_write

Add option to remove (common) ansi escape codes from on_write #166

Workflow file for this run

name: CMake-Windows
on: [push, pull_request]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Create Build Environment
run: cmake -E make_directory ${{github.workspace}}/build
- name: Configure CMake
shell: bash
working-directory: ${{github.workspace}}/build
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCOMMANDLINE_LIBTYPE=SHARED
- name: Build
working-directory: ${{github.workspace}}/build
shell: bash
run: cmake --build . --parallel --config $BUILD_TYPE