pbsplash/meson.build
Caleb Connolly 01af13950c
WIP: vendor tfblib + clang-format
We only need a subset of it, to iterate faster and integrate features
like in-line rotation let's vendor it for now.

Signed-off-by: Caleb Connolly <caleb@connolly.tech>
2023-07-28 20:15:06 +01:00

12 lines
179 B
Meson

project('pbsplash', 'c')
cc = meson.get_compiler('c')
deps = [
cc.find_library('m', required : false)
]
inc = [
include_directories('include'),
]
subdir('src')