chore: baseline usable version

This commit is contained in:
dela
2026-06-10 11:17:51 +08:00
commit a2f82a86b6
932 changed files with 172551 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# MIT License
# Copyright (c) 2023 SineStriker
# Description:
# Command that executes `configure_file`.
# Usage:
# cmake
# -D input=<file>
# -D output=<file>
# -D force=TRUE/FALSE
# [-D args=<args...>]
# -P configure_file.cmake
if(force AND EXISTS ${_output})
file(REMOVE ${_output})
endif()
configure_file(${input} ${output} ${args})