Exclude assets from CPack

This commit is contained in:
Christian Semmler 2025-08-13 16:06:29 -07:00
parent fc6d065732
commit a01c6ae193
2 changed files with 2 additions and 1 deletions

View File

@ -131,7 +131,7 @@ jobs:
success=0
max_tries=10
for i in $(seq $max_tries); do
cpack . && success=1
cpack . -E assets && success=1
if test $success = 1; then
break
fi

View File

@ -676,6 +676,7 @@ if(ISLE_BUILD_ASSETS)
install(DIRECTORY ${GENERATED_ASSETS_DIR}/
DESTINATION assets
COMPONENT assets
)
endif()