2019-07-27 16:58:55 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2019-07-28 10:29:34 +00:00
|
|
|
from bincrafters import build_template_header_only
|
2019-07-27 16:58:55 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2019-07-28 10:29:34 +00:00
|
|
|
builder = build_template_header_only.get_builder()
|
|
|
|
additional_options = { 'nameof:build_tests': True, 'nameof:build_examples': True }
|
|
|
|
builder.update_build_if(lambda build: True, new_options=additional_options)
|
2019-07-27 16:58:55 +00:00
|
|
|
builder.run()
|