# https://taskfile.dev #Called by the vnbuild system to produce builds for my website #https://www.vaughnnugent.com/resources/software #This taskfile is called in this directory and is specific to the phc-winner-argon2 project #that handles the MSBuild outside of the solution file version: '3' vars: PROJECT_NAME: 'Argon2' MODULE_NAME: 'vnlib.core' tasks: default: desc: "Builds the entire project from source code without using the VNBuild build system for target machines" cmds: #build with defaults - task: build - cmd: echo "Your Argon2 dll file can be found in '{{.USER_WORKING_DIR}}/build'" silent: true build: cmds: #init cmake build with greedy enabled - cmake -B./build - cmake --build build/ --config Debug - cmake --build build/ --config Release postbuild_success: vars: #required files to include in tar 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 #add embeded resources to output dirs - task: embed vars: TARGET: './build/Debug' - task: embed vars: TARGET: './build/Release' #static debug lib - cd build/Debug && tar -czf '../../bin/msvc-x64-debug-{{.PROJECT_NAME}}-static.tgz' {{.PROJECT_NAME}}_static.lib {{.TAR_FILES}} {{.PROJECT_NAME}}_static.pdb #dynamic debug lib - cd build/Debug && tar -czf '../../bin/msvc-x64-debug-{{.PROJECT_NAME}}.tgz' {{.PROJECT_NAME}}.dll {{.TAR_FILES}} {{.PROJECT_NAME}}.pdb #release static lib - cd build/Release && tar -czf '../../bin/msvc-x64-release-{{.PROJECT_NAME}}-static.tgz' {{.PROJECT_NAME}}_static.lib {{.TAR_FILES}} #release dll - cd build/Release && tar -czf '../../bin/msvc-x64-release-{{.PROJECT_NAME}}.tgz' {{.PROJECT_NAME}}.dll {{.TAR_FILES}} #source code - task: pack_source 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: cmds: #just pack up current directory, excluding build, bin, and git directories - powershell -Command "tar --exclude build/* --exclude bin/* -czf bin/src.tgz ." clean: ignore_error: true cmds: - cmd: powershell -Command "Remove-Item -Recurse './bin'" - cmd: powershell -Command "Remove-Item -Recurse './build'"