12 lines
314 B
CMake
12 lines
314 B
CMake
# 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()
|