Fix wrong ycm config

This commit is contained in:
David Holland 2019-03-25 18:15:28 +01:00
parent 09f9555cc8
commit d9bf6c4636
1 changed files with 1 additions and 1 deletions

View File

@ -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' ],
}