34 lines
806 B
Meson
34 lines
806 B
Meson
project(
|
|
'rkwifibt',
|
|
'c',
|
|
version : '1.0.0',
|
|
meson_version : '>=0.45.0',
|
|
)
|
|
|
|
executable(
|
|
'brcm_patchram_plus1',
|
|
[ 'tools/brcm_tools/brcm_patchram_plus1.c' ],
|
|
install : true,
|
|
)
|
|
|
|
executable(
|
|
'dhd_priv',
|
|
[ 'tools/brcm_tools/dhd_priv.c' ],
|
|
install : true,
|
|
)
|
|
|
|
executable(
|
|
'rtk_hciattach',
|
|
[ 'tools/rtk_hciattach/hciattach_rtk.c', 'tools/rtk_hciattach/hciattach.c', 'tools/rtk_hciattach/hciattach_h4.c', 'tools/rtk_hciattach/rtb_fwc.c'],
|
|
install : true,
|
|
)
|
|
|
|
inc = include_directories('tools/rk-hciattach/tools', 'tools/rk-hciattach/src', 'tools/rk-hciattach/src/shared', 'tools/rk-hciattach/lib')
|
|
|
|
executable(
|
|
'rk_hciattach',
|
|
[ 'tools/rk-hciattach/hciattach_rk.c', 'tools/rk-hciattach/hciattach.c' ],
|
|
include_directories : inc,
|
|
install : true,
|
|
)
|