Initial project setup
Some checks failed
Build / Build (push) Failing after 31s

This commit is contained in:
2026-05-31 22:33:57 -04:00
commit 2bd126f46f
24 changed files with 794 additions and 0 deletions

11
cmake/copy_files.cmake Normal file
View File

@@ -0,0 +1,11 @@
function(create_copy_folder_target target_name src dst)
add_custom_target(${target_name}
COMMAND
${CMAKE_COMMAND}
-E copy_directory
${src}
${dst}
COMMENT "Copying ${src} to ${dst}"
)
endfunction()