diff options
author | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2016-06-10 15:13:47 +0300 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2016-06-10 15:16:57 +0300 |
commit | 07da939a76e3bc8953b675a3bbeb2727c8f0dde4 (patch) | |
tree | 229ff411a4e711425fb0e9cc1fe876c3a285e62b /.ycm_extra_conf.py | |
parent | ca8b26bbf669905ef73aa0b27c753e5f18dd26e6 (diff) | |
download | qtlocation-mapboxgl-07da939a76e3bc8953b675a3bbeb2727c8f0dde4.tar.gz |
[build] Use Debug folders by default on YCM config
We've recently moved from Release to Debug default build type.
Diffstat (limited to '.ycm_extra_conf.py')
-rw-r--r-- | .ycm_extra_conf.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.ycm_extra_conf.py b/.ycm_extra_conf.py index 632686f3d6..6366ce06a1 100644 --- a/.ycm_extra_conf.py +++ b/.ycm_extra_conf.py @@ -33,11 +33,12 @@ import os import subprocess +import string import ycm_core compilation_database_folders = [ - 'build/linux-x86_64/Release', - 'build/osx/Release', + 'build/linux-x86_64/Debug', + 'build/osx/Debug', ] subprocess.call(['make compdb'], shell=True) |