updated build system

This commit is contained in:
Scott E. Graves 2024-07-11 07:35:44 -05:00
parent 9648abf4b9
commit 4649f66c00

View File

@ -84,3 +84,10 @@ ln -sf "${PROJECT_BUILD_DIR}/build/compile_commands.json" "${SOURCE_DIR}/compile
if [ -f "${SOURCE_DIR}/post_build.sh" ]; then
"${SOURCE_DIR}/post_build.sh"
fi
pushd "${PROJECT_DIST_DIR}"
FILE_LIST=$(find . -type f)
for FILE in "${FILE_LIST[@]}"; do
sha256sum ${FILE} >${FILE}.sha256
done
popd