C++ Meson Library Project
This commit is contained in:
11
test/meson.build
Normal file
11
test/meson.build
Normal file
@@ -0,0 +1,11 @@
|
||||
test_names = [
|
||||
'sample_test'
|
||||
]
|
||||
|
||||
test_files = []
|
||||
|
||||
foreach test_name : test_names
|
||||
test_files += files(test_name + '.cpp')
|
||||
test_exe = executable(test_name + '.test', test_files[-1], link_with : static_lib, include_directories : [includes, src], dependencies : module_deps)
|
||||
test(test_name, test_exe)
|
||||
endforeach
|
||||
Reference in New Issue
Block a user