Fixed some dependencies

This commit is contained in:
2021-11-01 14:58:30 -07:00
parent 4935ded1fc
commit 72dbf6b5f3
2 changed files with 10 additions and 4 deletions

View File

@ -5,7 +5,7 @@
function(tool_assets args)
add_custom_target(assets
COMMAND tar -C ./assets -cvf test.zip *
COMMAND tar -C ./assets -cvf assets.zip *
DEPENDS ${ARGV}
COMMENT "Compressing Assets"
)
@ -29,7 +29,7 @@ function(tool_copy target)
endforeach()
add_custom_target(${target}
DEPENDS ${MY_LIST}
COMMENT "Copying ${FILE_NAME}"
DEPENDS ${LOOP_DEPENDENCIES}
COMMENT "Creating dependency set ${target}"
)
endfunction()