summaryrefslogtreecommitdiffstats
path: root/ninja (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add g++ flag to use gold instead of ld for faster linkageNao Pross2019-01-272-1/+184
|
* Merge remote-tracking branch 'raffa/master'Nao Pross2019-01-261-1/+6
|\
| * Testing signalancarola2019-01-261-1/+6
| |
* | Add another warning flagNao Pross2019-01-251-0/+1
| |
* | Add even MORE warning flagsNao Pross2019-01-251-1/+6
| |
* | Enable more compiler warningsNao Pross2019-01-251-1/+1
|/
* Update .gitignore, delete makefile add -g flag to buildNao Pross2019-01-231-1/+1
|
* Add include headers of librariesNao Pross2019-01-221-1/+1
| | | | | | A symlink was used to point to the public header dir of the library. It may not be the best idea because it can break under non *nix systems, but it works.
* Include libraries in ninja build processNao Pross2019-01-221-2/+6
|
* Update configure.py and Ninja rulesNao Pross2019-01-221-4/+8
| | | | | Ninja now builds in the directory 'build' instead of 'bin' and, a static library build rule has been added.
* Add configuration for Ninja build systemNao Pross2019-01-221-0/+23
Run configure.py to generate a build.ninja file to build with ninja. $ ./configure.py $ ninja Ninja can also build individual targets, for example $ ninja bin/libflatland.so $ ninja bin/test/test1