Add asset loading support.

This commit is contained in:
2024-10-06 18:27:54 -05:00
parent c69d0ec1cc
commit 5751f7c83c
14 changed files with 503 additions and 5 deletions

View File

@ -0,0 +1,11 @@
# Copyright (c) 2023 Dominic Msters
#
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT
function(tool_copy target input output)
add_custom_target(${target}
COMMAND ${CMAKE_COMMAND} -E copy ${input} ${output}
)
add_dependencies(dawnassets ${target})
endfunction()