JUCE_Template/Source/.ycm_extra_conf.py

9 lines
199 B
Python
Raw Permalink Normal View History

2019-03-25 00:06:49 +01:00
import os
def Settings( **kwargs ):
env = os.getenv('JUCE_PATH')
if env != None:
return {
2019-03-25 18:15:28 +01:00
'flags': [ '-x', 'c++', '-I' + env, '-I../JuceLibraryCode' ],
2019-03-25 00:06:49 +01:00
}