mirror of
https://github.com/linux-msm/qbootctl
synced 2024-11-23 14:43:29 +08:00
55612452e0
not yet properly tested, but it seems to mostly work just fine. Slot switching and marking boot as successful at least just work!
23 lines
331 B
Meson
23 lines
331 B
Meson
project('qbootctl', 'cpp')
|
|
|
|
deps = [
|
|
dependency('zlib'),
|
|
]
|
|
|
|
src = [
|
|
'qbootctl.cpp',
|
|
'gpt-utils.cpp',
|
|
'ufs-bsg.cpp',
|
|
]
|
|
|
|
inc = [
|
|
include_directories('.'),
|
|
]
|
|
|
|
executable('qbootctl', src,
|
|
include_directories: inc,
|
|
dependencies: deps,
|
|
install: true,
|
|
c_args: [],
|
|
)
|