2023-07-24 15:56:15 -07:00
|
|
|
$path_root = git rev-parse --show-toplevel
|
|
|
|
$path_project = Join-Path $path_root project
|
|
|
|
$path_singleheader = Join-Path $path_root singleheader
|
|
|
|
$path_test = Join-Path $path_root test
|
|
|
|
$path_gen = Join-Path $path_test gen
|
|
|
|
$path_gen_build = Join-Path $path_gen build
|
|
|
|
$path_test_build = Join-Path $path_test build
|
|
|
|
$path_project_build = Join-Path $path_project build
|
|
|
|
$path_singleheader_build = Join-Path $path_singleheader build
|
2023-07-24 20:10:10 -07:00
|
|
|
$path_project_gen = Join-Path $path_project gen
|
|
|
|
$path_singleheader_gen = Join-Path $path_singleheader gen
|
2023-07-25 12:12:51 -07:00
|
|
|
$path_x64 = Join-Path $path_root x64
|
2023-07-24 15:56:15 -07:00
|
|
|
|
|
|
|
if ( Test-Path $path_project_build)
|
|
|
|
{
|
|
|
|
Remove-Item $path_project_build -Recurse
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( Test-Path $path_singleheader_build)
|
2023-04-01 19:21:46 -07:00
|
|
|
{
|
2023-07-24 15:56:15 -07:00
|
|
|
Remove-Item $path_singleheader_build -Recurse
|
2023-04-01 19:21:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( Test-Path $path_test_build )
|
|
|
|
{
|
|
|
|
Remove-Item $path_test_build -Recurse
|
|
|
|
}
|
|
|
|
|
2023-04-01 22:07:44 -07:00
|
|
|
if ( Test-Path $path_gen_build )
|
|
|
|
{
|
|
|
|
Remove-Item $path_gen_build -Recurse
|
|
|
|
}
|
|
|
|
|
2023-07-25 12:12:51 -07:00
|
|
|
if ( Test-Path $path_x64)
|
|
|
|
{
|
|
|
|
Remove-Item $path_x64 -Recurse
|
|
|
|
}
|
|
|
|
|
|
|
|
[string[]] $include = 'gen.hpp', 'gen.cpp', 'gen_dep.hpp', 'gen_dep.cpp'
|
2023-04-02 08:53:15 -07:00
|
|
|
[string[]] $exclude =
|
2023-04-01 19:21:46 -07:00
|
|
|
|
2023-07-24 20:10:10 -07:00
|
|
|
$files = Get-ChildItem -Recurse -Path $path_project_gen -Include $include -Exclude $exclude
|
2023-07-24 19:19:21 -07:00
|
|
|
|
|
|
|
if ( $files )
|
|
|
|
{
|
|
|
|
Remove-Item $files
|
|
|
|
}
|
|
|
|
|
2023-07-24 20:10:10 -07:00
|
|
|
$files = Get-ChildItem -Recurse -Path $path_singleheader_gen -Include $include -Exclude $exclude
|
2023-04-01 19:21:46 -07:00
|
|
|
|
2023-04-02 08:53:15 -07:00
|
|
|
if ( $files )
|
|
|
|
{
|
|
|
|
Remove-Item $files
|
|
|
|
}
|
2023-07-23 19:14:48 -07:00
|
|
|
|
2023-07-24 19:19:21 -07:00
|
|
|
$include = '*.h', '*.hpp', '*.cpp'
|
|
|
|
$exclude =
|
|
|
|
|
|
|
|
$files = Get-ChildItem -Recurse -Path $path_gen -Include $include -Exclude $exclude
|
|
|
|
|
|
|
|
if ( $files )
|
|
|
|
{
|
|
|
|
Remove-Item $files
|
|
|
|
}
|