1# build ninja 2 3## 获取代码 4``` 5git clone https://gitee.com/openharmony/third_party_ninja.git 6``` 7 8## 通过python脚本构建生成二进制文件 9``` 10cd third_party_ninja 11./configure.py --bootstrap 12``` 13 14## 通过CMake编译生成二进制文件 15``` 16cd third_party_ninja 17cmake -Bbuild-cmake 18cmake --build build-cmake 19``` 20