|
|
@@ -8,7 +8,7 @@ import waflib.extras.autowaf as autowaf |
|
|
|
# major increment <=> incompatible changes |
|
|
|
# minor increment <=> compatible changes (additions) |
|
|
|
# micro increment <=> no interface changes |
|
|
|
SRATOM_VERSION = '0.4.6' |
|
|
|
SRATOM_VERSION = '0.4.7' |
|
|
|
SRATOM_MAJOR_VERSION = '0' |
|
|
|
|
|
|
|
# Mandatory waf variables |
|
|
@@ -57,7 +57,7 @@ def configure(conf): |
|
|
|
autowaf.set_lib_env(conf, 'sratom', SRATOM_VERSION) |
|
|
|
conf.write_config_header('sratom_config.h', remove=False) |
|
|
|
|
|
|
|
autowaf.display_msg(conf, "Unit tests", str(conf.env.BUILD_TESTS)) |
|
|
|
autowaf.display_msg(conf, "Unit tests", bool(conf.env.BUILD_TESTS)) |
|
|
|
print('') |
|
|
|
|
|
|
|
lib_source = ['src/sratom.c'] |
|
|
@@ -143,7 +143,6 @@ def build(bld): |
|
|
|
# Documentation |
|
|
|
autowaf.build_dox(bld, 'SRATOM', SRATOM_VERSION, top, out) |
|
|
|
|
|
|
|
bld.add_post_fun(autowaf.run_ldconfig) |
|
|
|
if bld.env.DOCS: |
|
|
|
bld.add_post_fun(fix_docs) |
|
|
|
|
|
|
|