Actions workflow + slang, glsl compilation + asset copy
All checks were successful
Build / Build (push) Successful in 3m20s

This commit is contained in:
2026-04-11 17:48:56 -04:00
parent 9cb8c1854f
commit 1668eec79e
6 changed files with 136 additions and 8 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()