mirror of
https://github.com/unittest-cpp/unittest-cpp
synced 2026-09-26 16:19:30 +03:00
Create meson.build
This commit is contained in:
parent
741fd9b536
commit
ab3bea92cd
1 changed files with 27 additions and 0 deletions
27
UnitTest++/meson.build
Normal file
27
UnitTest++/meson.build
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
unittest_cpp_dir = include_directories('.')
|
||||
unittest_cpp_src = files(
|
||||
'AssertException.cpp',
|
||||
'Checks.cpp',
|
||||
'CompositeTestReporter.cpp',
|
||||
'CurrentTest.cpp',
|
||||
'DeferredTestReporter.cpp',
|
||||
'DeferredTestResult.cpp',
|
||||
'MemoryOutStream.cpp',
|
||||
'ReportAssert.cpp',
|
||||
'RequiredCheckException.cpp',
|
||||
'RequiredCheckTestReporter.cpp',
|
||||
'Test.cpp',
|
||||
'TestDetails.cpp',
|
||||
'TestList.cpp',
|
||||
'TestReporter.cpp',
|
||||
'TestReporterStdout.cpp',
|
||||
'TestResults.cpp',
|
||||
'TestRunner.cpp',
|
||||
'ThrowingTestReporter.cpp',
|
||||
'TimeConstraint.cpp',
|
||||
'XmlTestReporter.cpp'
|
||||
)
|
||||
|
||||
unittest_cpp_lib = static_library(meson.project_name(),
|
||||
sources: unittest_cpp_src,
|
||||
include_directories: unittest_cpp_dir)
|
||||
Loading…
Add table
Add a link
Reference in a new issue