4 lines
267 B
PowerShell
4 lines
267 B
PowerShell
Get-ChildItem -Path build -Recurse | Remove-Item -force -recurse
|
|
if (Test-Path -Path .\build) { Remove-Item -Path .\build -Recurse -Force }
|
|
cmake -DCMAKE_BUILD_TYPE=Release -G "CodeBlocks - MinGW Makefiles" -S . -B .\build
|
|
cmake --build .\build --target p2fa -- -j 14 |