summaryrefslogtreecommitdiffstats
path: root/configure.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add files to ctags index (create filename tags)Nao Pross2019-01-281-1/+1
| | | | So that it will be possibile to do (example) :tag signal.cpp
* Fix configure.py to build signal_testNao Pross2019-01-271-3/+29
|
* Update configure.py to add granular testingNao Pross2019-01-261-12/+28
| | | | | | | Tests can now be added with: add_test(bf, <test source>, [<sources to test>]) Note: tests are not built by default
* Update to make configure.py to build deps, instead of build.ninjaNao Pross2019-01-251-9/+20
|
* Update configure.py to default build libflatland.{so, a}Nao Pross2019-01-251-0/+3
|
* Prettify configure.py output (build.ninja)Nao Pross2019-01-221-6/+11
|
* Include libraries in ninja build processNao Pross2019-01-221-3/+11
|
* Update configure.py and Ninja rulesNao Pross2019-01-221-5/+7
| | | | | 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/+45
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