test: Move test objects to libtest
Create a subdirectory to contain the libtest helper library. Define two variables to clarify when tests are aimed at public or internal components. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
b43f56c46d
commit
3900b0771e
5 changed files with 25 additions and 13 deletions
7
test/libtest/meson.build
Normal file
7
test/libtest/meson.build
Normal file
|
@ -0,0 +1,7 @@
|
|||
libtest_sources = files([
|
||||
'test.cpp',
|
||||
])
|
||||
|
||||
libtest = static_library('libtest', libtest_sources)
|
||||
|
||||
libtest_includes = include_directories('.')
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
media_device_test = executable('media_device_test', 'media_device_test.cpp',
|
||||
link_with : [libcamera, libtest],
|
||||
include_directories : [libcamera_internal_includes,
|
||||
libtest_includes],)
|
||||
link_with : test_libraries,
|
||||
include_directories : test_includes_internal)
|
||||
|
|
|
@ -1,17 +1,24 @@
|
|||
libtest_sources = files([
|
||||
'test.cpp',
|
||||
])
|
||||
subdir('libtest')
|
||||
|
||||
libtest = static_library('libtest', libtest_sources)
|
||||
libtest_includes = include_directories('./')
|
||||
test_libraries = [libcamera, libtest]
|
||||
|
||||
test_includes_public = [
|
||||
libtest_includes,
|
||||
libcamera_includes,
|
||||
]
|
||||
|
||||
test_includes_internal = [
|
||||
test_includes_public,
|
||||
libcamera_internal_includes,
|
||||
]
|
||||
|
||||
test_init = executable('test_init', 'init.cpp',
|
||||
link_with : libcamera,
|
||||
include_directories : libcamera_includes)
|
||||
link_with : test_libraries,
|
||||
include_directories : test_includes_public)
|
||||
|
||||
list = executable('list', 'list.cpp',
|
||||
link_with : [libcamera, libtest],
|
||||
include_directories : libcamera_includes)
|
||||
link_with : test_libraries,
|
||||
include_directories : test_includes_public)
|
||||
|
||||
subdir('media_device')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue