From d9bf6c4636e3f37efd19022d4a89fd73fd064c61 Mon Sep 17 00:00:00 2001 From: David Holland Date: Mon, 25 Mar 2019 18:15:28 +0100 Subject: [PATCH] Fix wrong ycm config --- Source/.ycm_extra_conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/.ycm_extra_conf.py b/Source/.ycm_extra_conf.py index 7775afb..ddde4c9 100644 --- a/Source/.ycm_extra_conf.py +++ b/Source/.ycm_extra_conf.py @@ -4,5 +4,5 @@ def Settings( **kwargs ): env = os.getenv('JUCE_PATH') if env != None: return { - 'flags': [ '-x', 'c++', '-ID:\\JUCE\\modules', '-I../JuceLibraryCode' ], + 'flags': [ '-x', 'c++', '-I' + env, '-I../JuceLibraryCode' ], }