mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-22 16:03:22 +01:00
Add bazel
This commit is contained in:
parent
99858afd9f
commit
26c80f0145
@ -1,5 +1,6 @@
|
|||||||
Directory,URL
|
Directory,URL
|
||||||
"base256unicode", "https://github.com/fleschutz/base256unicode"
|
"base256unicode", "https://github.com/fleschutz/base256unicode"
|
||||||
|
"bazel", "https://github.com/bazelbuild/bazel"
|
||||||
"cmake", "https://github.com/Kitware/CMake"
|
"cmake", "https://github.com/Kitware/CMake"
|
||||||
"cmatrix", "https://github.com/abishekvashok/cmatrix"
|
"cmatrix", "https://github.com/abishekvashok/cmatrix"
|
||||||
"cmark", "https://github.com/commonmark/cmark"
|
"cmark", "https://github.com/commonmark/cmark"
|
||||||
|
|
@ -72,6 +72,16 @@ function MakeDir { param($Path)
|
|||||||
& make -j4
|
& make -j4
|
||||||
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
|
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
|
||||||
|
|
||||||
|
} elseif (test-path "$Path/compile.sh") {
|
||||||
|
"⏳ Building 📂$DirName using 'compile.sh'..."
|
||||||
|
set-location "$Path/"
|
||||||
|
|
||||||
|
& ./compile.sh
|
||||||
|
if ($lastExitCode -ne "0") { throw "Script 'compile.sh' has failed" }
|
||||||
|
|
||||||
|
& make -j4
|
||||||
|
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
|
||||||
|
|
||||||
} elseif (test-path "$Path/attower/src/build/DevBuild/build.bat") {
|
} elseif (test-path "$Path/attower/src/build/DevBuild/build.bat") {
|
||||||
"⏳ Building 📂$DirName using build.bat ..."
|
"⏳ Building 📂$DirName using build.bat ..."
|
||||||
set-location "$Path/attower/src/build/DevBuild/"
|
set-location "$Path/attower/src/build/DevBuild/"
|
||||||
|
Loading…
Reference in New Issue
Block a user