Extracted all parts of all characters

This commit is contained in:
2021-10-17 19:05:40 -07:00
parent c2bbaad5dd
commit 38c10c0db0
77 changed files with 62 additions and 12 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()