mirror of
https://github.com/linux-msm/qbootctl
synced 2024-11-23 14:43:29 +08:00
4c49647382
not sure how best to write tests, probably a larger test framework on a board farm to test on real devices will be more sensible.
25 lines
389 B
Meson
25 lines
389 B
Meson
project('qbootctl', 'cpp')
|
|
|
|
deps = [
|
|
dependency('zlib'),
|
|
]
|
|
|
|
src = [
|
|
'qbootctl.cpp',
|
|
'bootctrl_impl.cpp',
|
|
'bootctrl_test.cpp',
|
|
'gpt-utils.cpp',
|
|
'ufs-bsg.cpp',
|
|
]
|
|
|
|
inc = [
|
|
include_directories('.'),
|
|
]
|
|
|
|
executable('qbootctl', src,
|
|
include_directories: inc,
|
|
dependencies: deps,
|
|
install: true,
|
|
c_args: [],
|
|
)
|