From e4a47c38e86b787fed621735f46d290e9daec1e1 Mon Sep 17 00:00:00 2001 From: "F. Duncanh" Date: Sun, 15 Mar 2026 01:01:07 -0400 Subject: [PATCH] install new HCI beacon module on Linux and *BSD --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index f8491b8..a75fba9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -94,6 +94,12 @@ install( FILES Bluetooth_LE_beacon/uxplay_beacon_module_winrt.py PERMISSIONS OWNER_WRITE OWNER_READ GROUP_READ WORLD_READ) endif() +if (UNIX AND NOT APPLE) +install( FILES Bluetooth_LE_beacon/uxplay_beacon_module_HCI.py + DESTINATION bin + PERMISSIONS OWNER_WRITE OWNER_READ GROUP_READ WORLD_READ) +endif() + # uninstall target if(NOT TARGET uninstall)