aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wscript10
1 files changed, 5 insertions, 5 deletions
diff --git a/wscript b/wscript
index 9d0cb20..74d76b0 100644
--- a/wscript
+++ b/wscript
@@ -14,7 +14,7 @@ import waflib.Scripting as Scripting
# Variables for 'waf dist'
APPNAME = 'lv2'
-VERSION = '1.2.0'
+VERSION = '1.2.1'
# Mandatory variables
top = '.'
@@ -40,12 +40,12 @@ def configure(conf):
Options.options.build_tests = False
Options.options.no_plugins = True
+ if Options.options.online_docs:
+ Options.options.docs = True
+
autowaf.configure(conf)
autowaf.set_c99_mode(conf)
- if Options.options.online_docs and Options.options.docs:
- conf.fatal('At most one of --online-docs and --docs may be given')
-
if Options.platform == 'win32' or not hasattr(os.path, 'relpath'):
Logs.warn('System does not support linking headers, copying')
Options.options.copy_headers = True
@@ -308,7 +308,7 @@ def build(bld):
for i in bld.env.LV2_BUILD:
bld.recurse(i)
- if bld.env.DOCS:
+ if bld.env.DOCS or bld.env.ONLINE_DOCS:
# Build Doxygen documentation (and tags file)
autowaf.build_dox(bld, 'LV2', VERSION, top, out, 'lv2plug.in/doc')
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169