1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- import os
- import ycm_core
- DIR_OF_THIS_SCRIPT = os.path.abspath(os.path.dirname(__file__))
- SOURCE_EXTENSIONS = ['.cpp', '.c']
- database = ycm_core.CompilationDatabase(os.path.join(DIR_OF_THIS_SCRIPT, 'Build/ladybird'))
- def is_header_file(filename):
- extension = os.path.splitext(filename)[1]
- return extension in ['.h', '.hxx', '.hpp', '.hh']
- def find_corresponding_source_file(filename):
- if is_header_file(filename):
- basename = os.path.splitext(filename)[0]
- for extension in SOURCE_EXTENSIONS:
- replacement_file = basename + extension
- if os.path.exists(replacement_file):
- return replacement_file
- return filename
- def Settings(**kwargs):
- if kwargs['language'] != 'cfamily':
- return {}
-
-
-
-
-
-
- filename = find_corresponding_source_file(kwargs['filename'])
- compilation_info = database.GetCompilationInfoForFile(filename)
- if not compilation_info.compiler_flags_:
- return {}
- return {
- 'flags': list(compilation_info.compiler_flags_),
- 'include_paths_relative_to_dir': DIR_OF_THIS_SCRIPT,
- 'override_filename': filename
- }
|