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