chore: add cmake find_package test
Some checks failed
run-checks / run-clang-format (push) Has been cancelled
run-tests / test-on-ubuntu (push) Has been cancelled
run-tests / test-on-windows (push) Has been cancelled
run-tests / test-on-osx (push) Has been cancelled

This commit is contained in:
Petra Baranski
2025-07-12 15:32:37 +02:00
parent 28e9a22f9c
commit de67274233
4 changed files with 54 additions and 7 deletions

View File

@@ -70,6 +70,11 @@ def format_files(dry_run):
files_to_format = []
for pattern in patterns:
matched_files = glob.glob(pattern, recursive=True)
for file in matched_files:
if '\/tmp\/' in file or '\\tmp\\' in file:
matched_files.remove(file)
files_to_format.extend(matched_files)
if not files_to_format: