aboutsummaryrefslogtreecommitdiff
path: root/lib/Utils.Cryptography/argon2/Taskfile.yaml
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-12-20 18:33:32 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-12-20 18:33:32 -0500
commit43542a261ec0789c7e48551ea5f9eaefa8c4b772 (patch)
tree35d136732bf2a44780a156da6f9963d1ebb2201d /lib/Utils.Cryptography/argon2/Taskfile.yaml
parent546abea662263ef112c571c29706c47e875e09c4 (diff)
monocypher vendor and wrapper started, and partial public api updates
Diffstat (limited to 'lib/Utils.Cryptography/argon2/Taskfile.yaml')
-rw-r--r--lib/Utils.Cryptography/argon2/Taskfile.yaml12
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/Utils.Cryptography/argon2/Taskfile.yaml b/lib/Utils.Cryptography/argon2/Taskfile.yaml
index 48c3d6c..a2f43b3 100644
--- a/lib/Utils.Cryptography/argon2/Taskfile.yaml
+++ b/lib/Utils.Cryptography/argon2/Taskfile.yaml
@@ -53,19 +53,19 @@ tasks:
postbuild_success:
vars:
#required files to include in tar
- TAR_FILES: "license.txt readme.txt"
+ TAR_FILES: "license.txt readme.txt argon2.h"
cmds:
#make bin dir
- cmd: powershell -Command "New-Item -Type Directory -Force -Path './bin'"
ignore_error: true
- #get licenses for debug
- - task: licenses
+ #add embeded resources to output dirs
+ - task: embed
vars:
TARGET: './build/Debug'
- - task: licenses
+ - task: embed
vars:
TARGET: './build/Release'
@@ -83,12 +83,14 @@ tasks:
#source code
- task: pack_source
- licenses:
+ embed:
cmds:
#add license file
- powershell -Command "Copy-Item -Path ./license -Destination '{{.TARGET}}/license.txt'"
#add readme file
- powershell -Command "Copy-Item -Path ./build.readme.txt -Destination '{{.TARGET}}/readme.txt'"
+ #add argon2 header file
+ - powershell -Command "Copy-Item -Path ./include/argon2.h -Destination '{{.TARGET}}/argon2.h'"
pack_source:
dir: '{{.USER_WORKING_DIR}}'