jade
43cf487c25
It is a little bit scuffed, but it seems to produce correct results. We
can run it at a later date when we want to explode every in-flight
commit in existence and then need to filter-branch them.
Fixes: #188
Change-Id: Id97e4651f78804a941d941df02c7c1b21ce453b6
14 lines
340 B
Meson
14 lines
340 B
Meson
project('lix-clang-tidy', ['cpp', 'c'],
|
|
version : '0.1',
|
|
default_options : ['warning_level=3', 'cpp_std=c++20'])
|
|
|
|
llvm = dependency('Clang', version: '>= 14', modules: ['libclang'])
|
|
sources = files(
|
|
'HasPrefixSuffix.cc',
|
|
'LixClangTidyChecks.cc',
|
|
'FixIncludes.cc',
|
|
)
|
|
|
|
shared_module('lix-clang-tidy', sources,
|
|
dependencies: llvm)
|