mirror of
https://github.com/Ed94/HandmadeHero.git
synced 2024-11-10 03:44:53 -08:00
Ed_
2f6e60d472
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.
17 lines
488 B
PowerShell
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
|
|
}
|
|
|