build: Avoid building files multiple times
We don't have to build each source for every test, instead we could create a static library link it with every test, which will be a lot faster.
This commit is contained in:
@@ -54,7 +54,7 @@ calls_ofono = shared_module(
|
||||
src_include,
|
||||
include_directories('.')
|
||||
],
|
||||
link_with: gdbofono_lib,
|
||||
link_with: [gdbofono_lib, libcalls],
|
||||
install: true,
|
||||
install_dir: ofono_install_dir
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user