mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-08 07:10:12 -05:00
12 lines
257 B
Bash
Executable File
12 lines
257 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd .gitlab
|
|
|
|
git clone https://github.com/ninja-build/ninja.git ninja-src
|
|
cmake -S ninja-src -B ninja-src/build -DCMAKE_BUILD_TYPE=Release
|
|
cmake --build ninja-src/build --parallel --target ninja
|
|
mv ninja-src/build/ninja .
|
|
rm -rf ninja-src
|