7 lines
220 B
Meson
7 lines
220 B
Meson
project('bluetooth-beacon-receiver', 'cpp')
|
|
executable('bluetooth-beacon', 'src/beacon.cpp')
|
|
executable('bluetooth-receiver', 'src/receiver.cpp')
|
|
|
|
# add libbluetooth
|
|
target_link_libraries('bluetooth-beacon' 'bluetooth')
|