CodeWalrus

Development => PC, Mac & Vintage Computers => Topic started by: novenary on February 18, 2016, 04:03:53 PM

Title: Shogun - A dead simple build system based on Ninja
Post by: novenary on February 18, 2016, 04:03:53 PM
I grew tired of writing makefiles and I couldn't find a single build system that aimed to be minimalist and had decent scripting support. Ninja does the former but doesn't implement the latter on its own by design so I wrote the complementary part.

Github: https://github.com/Streetwalrus/shogun

I hacked this together in a few hours so it's not perfect but I can already build a project of mine with it and it works great.
Title: Re: Shogun - A dead simple build system based on Ninja
Post by: Dudeman313 on February 18, 2016, 09:23:04 PM
Nice! I saw "Shogun" and thought of the restaurant, and then saw the rest and was like, "Oh. :P"
Title: Re: Shogun - A dead simple build system based on Ninja
Post by: aetios on February 22, 2016, 02:04:13 PM
Ha, that's really cool. That oughta speed up building things a lot :)
Title: Re: Shogun - A dead simple build system based on Ninja
Post by: novenary on February 22, 2016, 02:06:04 PM
Well, the main point is to make it easier to write build scripts. Ninja is definitely faster than make though.