Squashed 'libs/CommService/' content from commit 7ccc0fc
git-subtree-dir: libs/CommService git-subtree-split: 7ccc0fce88bbc5969df060058cf0fb57abe3bcf9
This commit is contained in:
25
libs/CLI11/.github/actions/quick_cmake/action.yml
vendored
Normal file
25
libs/CLI11/.github/actions/quick_cmake/action.yml
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
name: Quick CMake config
|
||||
description: "Runs CMake 3.4+ (if already setup)"
|
||||
inputs:
|
||||
args:
|
||||
description: "Other arguments"
|
||||
required: false
|
||||
default: ""
|
||||
cmake-version:
|
||||
description: "The CMake version to run"
|
||||
required: true
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: CMake ${{ inputs.cmake-version }}
|
||||
uses: jwlawson/actions-setup-cmake@v1.12
|
||||
with:
|
||||
cmake-version: "${{ inputs.cmake-version }}"
|
||||
- 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
|
||||
Reference in New Issue
Block a user