Skip to content

Commit 9df6b5c

Browse files
author
Sander Valstar
committed
format
1 parent e3d513c commit 9df6b5c

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

meson.build

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project('meson_test', 'cpp',
2-
version : '0.0.1',
3-
default_options : ['warning_level=3',
2+
version : '0.0.1',
3+
default_options : ['warning_level=3',
44
'b_coverage=true',
55
'cpp_std=c++14'])
66

@@ -23,8 +23,8 @@ run_target('cov',
2323
command : './build_scripts/get_coverage_percentages')
2424

2525
run_target('clang-tidy',
26-
command: ['./build_scripts/tidy.sh'])
26+
command: ['./build_scripts/tidy.sh'])
2727

2828
run_target('cppcheck', command : ['cppcheck',
29-
'--enable=all', '--std=c++14', '--error-exitcode=1', '--suppress=missingInclude',
30-
'src', 'test'])
29+
'--enable=all', '--std=c++14', '--error-exitcode=1', '--suppress=missingInclude',
30+
'src', 'test'])

src/meson.build

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
src_include_dir = include_directories('.')
22

33
exe = executable('main.cpp.executable',
4-
sources: ['main.cpp', 'math.hpp'],
5-
dependencies : hello_greet_dep,
6-
install : true)
4+
sources: ['main.cpp', 'math.hpp'],
5+
dependencies : hello_greet_dep,
6+
install : true)

test/math/meson.build

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
e = executable('math-test.cpp.executable',
2-
sources: ['math-test.cpp'],
3-
dependencies: [gtest_dep],
4-
include_directories: src_include_dir)
2+
sources: ['math-test.cpp'],
3+
dependencies: [gtest_dep],
4+
include_directories: src_include_dir)
55
test('math test', e)

0 commit comments

Comments
 (0)