mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 05:16:10 +01:00
Meson build fixes
* Add missing files to `tests/meson.build` * Rename meson build workflows to be more easily identifiable
This commit is contained in:
parent
272bed081e
commit
0a1b0ae9d1
2
.github/workflows/linux-meson-builds.yml
vendored
2
.github/workflows/linux-meson-builds.yml
vendored
@ -1,4 +1,4 @@
|
||||
name: Linux builds (basic) using meson build system
|
||||
name: Linux builds (meson)
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
|
@ -8,6 +8,7 @@
|
||||
# define the sources of the self test
|
||||
# Please keep these ordered alphabetically
|
||||
self_test_sources = files(
|
||||
'SelfTest/helpers/parse_test_spec.cpp',
|
||||
'SelfTest/IntrospectiveTests/Clara.tests.cpp',
|
||||
'SelfTest/IntrospectiveTests/CmdLine.tests.cpp',
|
||||
'SelfTest/IntrospectiveTests/CmdLineHelpers.tests.cpp',
|
||||
@ -26,6 +27,7 @@ self_test_sources = files(
|
||||
'SelfTest/IntrospectiveTests/StringManip.tests.cpp',
|
||||
'SelfTest/IntrospectiveTests/Tag.tests.cpp',
|
||||
'SelfTest/IntrospectiveTests/TestCaseInfoHasher.tests.cpp',
|
||||
'SelfTest/IntrospectiveTests/TestSpec.tests.cpp',
|
||||
'SelfTest/IntrospectiveTests/TestSpecParser.tests.cpp',
|
||||
'SelfTest/IntrospectiveTests/TextFlow.tests.cpp',
|
||||
'SelfTest/IntrospectiveTests/ToString.tests.cpp',
|
||||
@ -65,7 +67,7 @@ self_test_sources = files(
|
||||
self_test = executable(
|
||||
'SelfTest',
|
||||
self_test_sources,
|
||||
include_directories: '../src',
|
||||
include_directories: ['../src', './SelfTest'],
|
||||
link_with: [catch2_with_main, catch2],
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user