From 07da939a76e3bc8953b675a3bbeb2727c8f0dde4 Mon Sep 17 00:00:00 2001 From: Bruno de Oliveira Abinader Date: Fri, 10 Jun 2016 15:13:47 +0300 Subject: [build] Use Debug folders by default on YCM config We've recently moved from Release to Debug default build type. --- .ycm_extra_conf.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to '.ycm_extra_conf.py') 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) -- cgit v1.2.1