Reduced lib build complecsity

This commit is contained in:
ktlo
2019-10-11 11:06:21 +00:00
parent e1249f68e5
commit a45204ff0a
4 changed files with 3 additions and 11 deletions

View File

@@ -6,6 +6,6 @@ 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_exe = executable(test_name + '.test', test_files[-1], link_with : lib, include_directories : [includes, src], dependencies : module_deps)
test(test_name, test_exe, suite : 'regular')
endforeach