14 lines
311 B
YAML
14 lines
311 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Add cmake
|
|
when:
|
|
- cmake_configured is undefined
|
|
block:
|
|
- name: Append to pkgs
|
|
ansible.builtin.set_fact:
|
|
pkg_sys: "{{ pkg_sys + ['cmake'] }}"
|
|
|
|
- name: Set cmake_configured
|
|
ansible.builtin.set_fact:
|
|
cmake_configured: true
|