standarizing cmake builds

This commit is contained in:
Matthew Stobbs
2025-03-31 21:17:22 -06:00
parent 4da72c2539
commit 40adb16987
18 changed files with 242 additions and 216 deletions

View File

@@ -0,0 +1,10 @@
# vim: set filetype=yaml.ansible :
---
- name: Remove file list
become: true
loop: "{{ file_list }}"
loop_control:
loop_var: file
ansible.builtin.file:
state: absent
path: "{{ file }}"