From 52965ce8bb0b06f59b07c7f6b5a9de6bfbc22b40 Mon Sep 17 00:00:00 2001 From: vnugent Date: Mon, 29 Jul 2024 12:26:32 -0400 Subject: move dev-init to module level for vnbuild module init --- Module.Taskfile.yaml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'Module.Taskfile.yaml') diff --git a/Module.Taskfile.yaml b/Module.Taskfile.yaml index 8d81b0e..bfc8849 100644 --- a/Module.Taskfile.yaml +++ b/Module.Taskfile.yaml @@ -51,10 +51,22 @@ tasks: clean: cmds: #clean solution - - dotnet clean /p:BuildInParallel=true /p:MultiProcessorCompilation=true - - cmd: powershell -Command "rm {{ .ARCHIVE_FILE_NAME }} --Force" - ignore_error: true + - dotnet clean /p:BuildInParallel=true /p:MultiProcessorCompilation=true + - cmd: powershell -Command "rm {{ .ARCHIVE_FILE_NAME }} --Force" + ignore_error: true + dev-init: + desc: 'Configures the module for local development' + cmds: + #build native libs for development + - cd lib/Utils.Memory/vnlib_rpmalloc && task build + - cd lib/Utils.Memory/vnlib_mimalloc && task build + - cd lib/Utils.Cryptography/monocypher && task build + - cd lib/Utils.Cryptography/argon2 && task build + - cd lib/Net.Compression/vnlib_compress && task build + - cmd: echo "dev init complete" + silent: true + #Internal tasks build_debug: -- cgit