diff --git a/clean.bat b/clean.bat deleted file mode 100644 index a8f4b09..0000000 --- a/clean.bat +++ /dev/null @@ -1,6 +0,0 @@ -rd /S /Q lib -rd /S /Q bin -rd /S /Q tmp -rd /S /Q build -rd /S /Q WinBuild32 -rd /S /Q WinBuild64 \ No newline at end of file diff --git a/dist.ps1 b/dist.ps1 index 8d3058c..895155b 100644 --- a/dist.ps1 +++ b/dist.ps1 @@ -45,10 +45,10 @@ function Build-Library([string]$BuildType, [string]$Arch, [string]$LanguageBindi # Directory for CMake to build and store intermediate files $env:BuildDir="tmp\$BuildType\"+$Arch+$LanguageBindingPostfix - md $env:BuildDir + md $env:BuildDir -ErrorAction:'silentlycontinue' # Directory where we plan to store the resultant libraries $env:OutputDir="lib\"+$BuildType.ToLower() - md $env:OutputDir\$archAlias$LanguageBindingPostfix + md $env:OutputDir\$archAlias$LanguageBindingPostfix -ErrorAction:'silentlycontinue' Push-Location -Path $env:BuildDir cmake ${OptionalLanguageBinding} -G "Visual Studio 16 2019" -A $Arch ../../../ cmake --build . --config $BuildType