HandmadeHero/scripts/clean.ps1
Ed_ 2f6e60d472 symbols for engine module are now generated into a header
Started to to use gencpp to codegen.

Now instead of loading the symbol table file made by the build script I can just have it get directly compiled.
2023-09-28 20:22:15 -04:00

17 lines
488 B
PowerShell

clear-host
$path_root = git rev-parse --show-toplevel
$path_project = join-path $path_root "project"
$path_build = join-path $path_root "build"
$path_data = join-path $path_root "data"
$path_dependencies = join-path $path_project "dependencies"
$path_binaries = join-path $path_data "binaries"
if ( Test-Path $path_build ) {
Remove-Item -verbose $path_build -Recurse
}
if ( Test-Path $path_binaries ) {
Remove-Item -verbose $path_binaries -Recurse
}