diff options
-rw-r--r-- | ycm_extra_conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ycm_extra_conf.py b/ycm_extra_conf.py index ae6aa1c..a132da4 100644 --- a/ycm_extra_conf.py +++ b/ycm_extra_conf.py @@ -10,7 +10,7 @@ def IsHeaderFile( filename ): def ContainsJamfile(path): for file in os.listdir(path): - if file == 'Jamfile.jam': + if file == 'Jamfile.jam' or file == 'Jamroot.jam': return True return False |