/srv/osrm/osrm-backend/third_party/libosmium
NameSizeModeActions
.github/-0755rm
benchmarks/-0755rm
cmake/-0755rm
doc/-0755rm
examples/-0755rm
include/-0755rm
test/-0755rm
.clang-tidy62910644editdlrm
.codecov.yml1160644editdlrm
.gitignore640644editdlrm
.gitmodules1270644editdlrm
.ycm_extra_conf.py12540644editdlrm
appveyor.yml20060644editdlrm
build-appveyor.bat24680644editdlrm
build-local.bat5990644editdlrm
build-msys2.bat15340644editdlrm
CHANGELOG.md534150644editdlrm
CMakeLists.txt165330644editdlrm
CONTRIBUTING.md8640644editdlrm
LICENSE13380644editdlrm
NOTES_FOR_DEVELOPERS.md66320644editdlrm
osmium.imp7700644editdlrm
README.md31540644editdlrm
Edit: /srv/osrm/osrm-backend/third_party/libosmium/.ycm_extra_conf.py (1254B)
#----------------------------------------------------------------------------- # # Configuration for YouCompleteMe Vim plugin # # https://valloric.github.io/YouCompleteMe/ # #----------------------------------------------------------------------------- from os.path import realpath, dirname basedir = dirname(realpath(__file__)) # some default flags # for more information install clang-3.2-doc package and # check UsersManual.html flags = [ '-Werror', '-Wall', '-Wextra', '-pedantic', '-Wno-return-type', '-Wno-unused-parameter', '-Wno-unused-variable', '-std=c++11', # '-x' and 'c++' also required # use 'c' for C projects '-x', 'c++', # workaround for https://github.com/Valloric/YouCompleteMe/issues/303 # also see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=800618 '-isystem', '/usr/lib/ycmd/clang_includes/', # libosmium include dirs '-I%s/include' % basedir, '-I%s/test/include' % basedir, '-I%s/test/data-test/include' % basedir, # include third party libraries '-I/usr/include/gdal', ] # youcompleteme is calling this function to get flags # You can also set database for flags. Check: JSONCompilationDatabase.html in # clang-3.2-doc package def FlagsForFile( filename ): return { 'flags': flags, 'do_cache': True }