diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-03-19 23:26:08 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-03-19 23:26:08 +0000 |
| commit | 656a28ebc064b7eeba7b1eee4a36a00714a84434 (patch) | |
| tree | a00eea4ed3a9aa80fbfae49f3ec1a473ceb899db /wscript | |
| parent | 7b56088a731550ce0b07f9454c70fde39982a69a (diff) | |
Support for ycmd.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -41,7 +41,7 @@ print 'Version: %s' % VERSION def options(opt): opt.load('compiler_cxx') opt.load('winres') - + opt.add_option('--enable-debug', action='store_true', default=False, help='build with debugging information and without optimisation') opt.add_option('--disable-gui', action='store_true', default=False, help='disable building of GUI tools') opt.add_option('--disable-tests', action='store_true', default=False, help='disable building of tests') @@ -63,6 +63,7 @@ def options(opt): def configure(conf): conf.load('compiler_cxx') + conf.load('clang_compilation_database', tooldir=['waf-tools']) if conf.options.target_windows: conf.load('winres') |
