Add 'How to build with ninja' section (#473)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Tue, 3 Jul 2018 08:04:15 +0000 (17:04 +0900)
committerSergey Vostokov/AI Tools Lab /SRR/Staff Engineer/삼성전자 <s.vostokov@samsung.com>
Tue, 3 Jul 2018 08:04:15 +0000 (17:04 +0900)
This commit adds 'How to build with ninja' section to 'Getting Started'
guide.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
doc/getting_started.md

index 2a64df3..cc7229f 100644 (file)
@@ -50,6 +50,15 @@ nncc$ ./nncc docker-build
 ...
 ```
 
+#### How to build _nncc_ with ninja
+
+You may build _nncc_ with ninja (instead of make) if ninja is available. Please try the following commands:
+```
+nncc$ rm -rf build
+nncc$ ./nncc configure -G Ninja
+nncc$ ./nncc build
+```
+
 #### How to build and run _nncc_ unittests
 
 _nncc_ includes various unittests to check its correctness. One may build and run these unittests via the following command: