- Timestamp:
- Sep 16, 2016, 6:33:17 PM (8 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 99d8cbb
- Parents:
- 4b251ae
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wscript
r4b251ae r7800335 327 327 ctx.to_log('doxygen was not found (ignoring)') 328 328 329 # check if sphinx-build is installed, optional 330 try: 331 ctx.find_program('sphinx-build', var='SPHINX') 332 except ctx.errors.ConfigurationError: 333 ctx.to_log('sphinx-build was not found (ignoring)') 334 329 335 def build(bld): 330 336 bld.env['VERSION'] = VERSION … … 368 374 relative_trick = True) 369 375 376 # build documentation from source files using sphinx-build 377 if bld.env['SPHINX']: 378 bld( name = 'sphinx', rule = 'make html', 379 source = ['doc/conf.py'] + bld.path.ant_glob('doc/**.rst'), 380 cwd = 'doc') 381 bld.install_files( '${PREFIX}' + '/share/doc/libaubio-doc/sphinx', 382 bld.path.ant_glob('doc/_build/html/**'), 383 cwd = bld.path.find_dir ('doc/_build/html'), 384 relative_trick = True) 385 370 386 def shutdown(bld): 371 387 from waflib import Logs
Note: See TracChangeset
for help on using the changeset viewer.