ビルドツール
Make の置換えを狙った高速なビルドツール。cmakeを導入しているプロジェクトであれば, Make から Ninja への移行は容易である。
1. cmakeによるビルドスクリプト生成
1 |
$ cmake -G Ninja -B build |
out-of-source の例。サブフォルダ build に "build.ninja" などを生成する。
2. ビルド実行例
2.1. 詳細表示なし
1 |
$ ninja |
2.2. 詳細表示あり
1 |
$ ninja -v |
3. クリーン実行
3.1. Ninjaのサブツールを呼び出す
1 |
$ ninja -t clean |
3.2. ターゲット clean を実行する
1 |
$ ninja clean |
4. パッケージ名
Ubuntu(apt)のパッケージ名は "ninja-build"。"ninja" ではない。
1 2 3 4 5 6 7 8 9 10 11 12 |
Package: ninja-build ... Homepage: https://ninja-build.org/ Description-en: small build system closest in spirit to Make Ninja is yet another build system. It takes as input the interdependencies of files (typically source code and output executables) and orchestrates building them, quickly. . Ninja joins a sea of other build systems. Its distinguishing goal is to be fast. It is born from the Chromium browser project, which has over 30,000 source files and whose other build systems can take ten seconds to start building after changing one file. Ninja is under a second. |