Add protobufs

This commit is contained in:
Markus Fleschutz 2021-05-17 20:22:04 +02:00
parent 6ee8ea905f
commit f82cf901bf
2 changed files with 7 additions and 6 deletions

View File

@ -9,6 +9,7 @@ URL,Directory
"https://github.com/fleschutz/base256unicode", "base256unicode"
"https://github.com/grafana/grafana", "grafana"
"https://github.com/llvm/llvm-project", "llvm"
"https://github.com/protocolbuffers/protobuf", "protobuf"
"https://github.com/smartmontools/smartmontools", "smartmontools"
"https://github.com/synesthesiam/voice2json", "voice2json"
"https://github.com/tensorflow/tensorflow", "tensorflow"

1 URL Directory
9 https://github.com/fleschutz/base256unicode base256unicode
10 https://github.com/grafana/grafana grafana
11 https://github.com/llvm/llvm-project llvm
12 https://github.com/protocolbuffers/protobuf protobuf
13 https://github.com/smartmontools/smartmontools smartmontools
14 https://github.com/synesthesiam/voice2json voice2json
15 https://github.com/tensorflow/tensorflow tensorflow

View File

@ -10,7 +10,7 @@ param($RepoDir = "$PWD")
function MakeDir { param($Path)
$DirName = (get-item "$Path").Name
if (test-path "$Path/CMakeLists.txt") {
"⏳ Building 📂$DirName using CMakeLists.txt ..."
"⏳ Building 📂$DirName using CMakeLists.txt..."
if (-not(test-path "$Path/BuildFiles/" -pathType container)) {
& mkdir "$Path/BuildFiles/"
}
@ -23,7 +23,7 @@ function MakeDir { param($Path)
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
} elseif (test-path "$Path/configure") {
"⏳ Building 📂$DirName using 'configure' ..."
"⏳ Building 📂$DirName using 'configure'..."
set-location "$Path/"
& ./configure
@ -33,7 +33,7 @@ function MakeDir { param($Path)
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
} elseif (test-path "$Path/autogen.sh") {
"⏳ Building 📂$DirName using 'autogen.sh' ..."
"⏳ Building 📂$DirName using 'autogen.sh'..."
set-location "$Path/"
& ./autogen.sh
@ -43,7 +43,7 @@ function MakeDir { param($Path)
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
} elseif (test-path "$Path/build.gradle") {
"⏳ Building 📂$DirName using build.gradle ..."
"⏳ Building 📂$DirName using build.gradle..."
set-location "$Path"
& gradle build
@ -53,7 +53,7 @@ function MakeDir { param($Path)
if ($lastExitCode -ne "0") { throw "'gradle test' has failed" }
} elseif (test-path "$Path/Imakefile") {
"⏳ Building 📂$DirName using Imakefile ..."
"⏳ Building 📂$DirName using Imakefile..."
set-location "$RepoDir/"
& xmkmf
@ -77,7 +77,7 @@ function MakeDir { param($Path)
if ($lastExitCode -ne "0") { throw "Script 'build.bat' returned error(s)" }
} elseif (test-path "$Path/$DirName" -pathType container) {
"⏳ No make rule found, but trying the subdirectory 📂$DirName ..."
"⏳ No make rule found, trying subfolder 📂$($DirName)..."
MakeDir "$Path/$DirName"
} else {
write-warning "Sorry, no make rule applies to: 📂$DirName"