From 2eb1c182407069feb82bcc3e1363e12517b05bbd Mon Sep 17 00:00:00 2001 From: Devchandra Meetei Leishangthem Date: Thu, 26 Mar 2015 16:16:25 +0530 Subject: [PATCH] build: add documentation for ninja support PR-URL: https://github.com/libuv/libuv/pull/290 Reviewed-By: Ben Noordhuis --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index dd9cb15a66e..a7da8b898c5 100644 --- a/README.md +++ b/README.md @@ -155,6 +155,15 @@ Run: Note for UNIX users: compile your project with `-D_LARGEFILE_SOURCE` and `-D_FILE_OFFSET_BITS=64`. GYP builds take care of that automatically. +### Using Ninja + +To use ninja for build on ninja supported platforms, run: + + $ ./gyp_uv.py -f ninja + $ ninja -C out/Debug #for debug build OR + $ ninja -C out/Release + + ### Running tests Run: