diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-05-29 14:30:29 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-05-29 14:30:29 +0100 |
commit | bc3f3b142e972071df8968f878f76e4412b4e3e6 (patch) | |
tree | 2a5beb06d180a4fd4ab8d2efa0a568ca0da9f1a3 | |
parent | Add heartbeat service (diff) | |
download | util-bc3f3b142e972071df8968f878f76e4412b4e3e6.tar.bz2 util-bc3f3b142e972071df8968f878f76e4412b4e3e6.tar.xz util-bc3f3b142e972071df8968f878f76e4412b4e3e6.zip |
Look for Jamroot.jam as well as Jamfile.jam
-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 |