6b0020749d
This brings in infrastructure for developing new custom clang-tidy lints and refactors for Lix. Change-Id: I3df5f5855712ab4f97d4e84d771e5e818f81f881
8 lines
307 B
Meson
8 lines
307 B
Meson
project('nix-clang-tidy', ['cpp', 'c'],
|
|
version : '0.1',
|
|
default_options : ['warning_level=3', 'cpp_std=c++20'])
|
|
|
|
llvm = dependency('Clang', version: '>= 14', modules: ['libclang'])
|
|
sources = ['HasPrefixSuffix.cc', 'NixClangTidyChecks.cc']
|
|
shared_module('nix-clang-tidy', sources,
|
|
dependencies: llvm)
|