mirror of
https://github.com/Ed94/refactor.git
synced 2024-11-10 04:14:53 -08:00
Ed_
aec095a9f0
Moved header and source to code Changed all build scripts to just be powershell (preferred) Added clang format (but forgot that you cannot format zpl because it hangs clang format) Code changes: * Removed long names just using short names (there is an issue with the opts_compile...) * Removed zpl.refactored.h (its generated now when `.\build.ps1 test` is run * Modified zpl.h to just have the radix sort modification.
15 lines
334 B
PowerShell
15 lines
334 B
PowerShell
$path_root = git rev-parse --show-toplevel
|
|
$path_build = Join-Path $path_root build
|
|
$path_test = Join-Path $path_root test
|
|
$path_test_build = Join-Path $path_test build
|
|
|
|
if ( Test-Path $path_build )
|
|
{
|
|
Remove-Item $path_build -Recurse
|
|
}
|
|
|
|
if ( Test-Path $path_test_build )
|
|
{
|
|
Remove-Item $path_test_build -Recurse
|
|
}
|