This repository has been archived on 2024-05-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ar_basalt/thirdparty/CLI11/.github/actions/quick_cmake/action.yml
2022-04-05 11:42:28 +03:00

19 lines
386 B
YAML

name: Quick CMake config
description: 'Runs CMake 3.4+ (if already setup)'
inputs:
args:
description: 'Other arguments'
required: false
default: ''
runs:
using: composite
steps:
- run: |
mkdir -p build-tmp
touch build-tmp/tmp
rm -r build-tmp/*
(cd build-tmp && cmake .. ${{ inputs.args}})
rm -r build-tmp
shell: bash