Extracted all parts of all characters

This commit is contained in:
2021-10-17 19:05:40 -07:00
parent 3fd0efb4d8
commit 5c7468283b
5 changed files with 43 additions and 11 deletions

12
tools/file/CMakeLists.txt Normal file
View File

@ -0,0 +1,12 @@
# Copyright (c) 2021 Dominic Msters
#
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT
function(tool_assets args)
add_custom_target(assets
COMMAND tar -C ./assets -cvf test.zip *
DEPENDS ${ARGV}
COMMENT "Compressing Assets"
)
endfunction()