Add build-repos.ps1

This commit is contained in:
Markus Fleschutz
2021-04-14 19:01:47 +02:00
parent f9a479b0f9
commit a2a0c914fe
4 changed files with 47 additions and 8 deletions

View File

@ -9,19 +9,24 @@
param($RepoDir = "$PWD")
try {
if (test-path CMakeLists.txt) {
if (test-path "$Repodir/CMakeLists.txt") {
"Building $RepoDir using CMakeLists.txt..."
& cmake .
if ($lastExitCode -ne "0") { throw "Can't execute 'cmake .'" }
& mkdir CMakeBuild
set-location CMakeBuild
& make
if ($lastExitCode -ne "0") { throw "Can't execute 'make .'" }
} elseif (test-path Makefile) {
& cmake ..
if ($lastExitCode -ne "0") { throw "Executing 'cmake ..' has failed" }
& make -j4
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
} elseif (test-path "$RepoDir/Makefile") {
"Building $RepoDir using Makefile..."
& make
if ($lastExitCode -ne "0") { throw "Can't execute 'make .'" }
& make -j4
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
} else {
write-warning "Sorry, no clue how to build $RepoDir"
exit 0
}
write-host -foregroundColor green "OK - built Git repository $RepoDir"
exit 0