mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-12-02 06:50:26 +01:00
25 lines
442 B
Plaintext
25 lines
442 B
Plaintext
|
#! /usr/bin/env python
|
||
|
# encoding: utf-8
|
||
|
# Thomas Nagy, 2008-2010 (ita)
|
||
|
|
||
|
VERSION='0.0.1'
|
||
|
APPNAME='cc_test'
|
||
|
|
||
|
top = '.'
|
||
|
out = 'build'
|
||
|
|
||
|
def options(opt):
|
||
|
opt.load('compiler_cxx')
|
||
|
|
||
|
def configure(conf):
|
||
|
conf.load('compiler_cxx doxygen')
|
||
|
|
||
|
def build(bld):
|
||
|
# Note: Doxgen parameters may be passed using pars attribute
|
||
|
# e.g. pars={'EXCLUDE_PATTERNS':'*.babu'}
|
||
|
bld(
|
||
|
features='doxygen',
|
||
|
doxyfile='test.conf',
|
||
|
doxy_tar='docs.tar.bz2')
|
||
|
|