Initial stuff

This commit is contained in:
2024-01-21 11:16:12 -05:00
commit 85ac6a1d55
10 changed files with 284 additions and 0 deletions

9
scripts/clean.ps1 Normal file
View File

@ -0,0 +1,9 @@
cls
$path_root = git rev-parse --show-toplevel
$path_code = join-path $path_root 'code'
$path_build = join-path $path_root 'build'
if ( test-path $path_build ) {
Remove-Item $path_build -Verbose -Force -Recurse
}