mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-02 13:01:18 +12:00
build: Allow Linux builds to be made without Bluez (#1579)
This commit is contained in:
parent
7168d20cde
commit
02616bf6be
2 changed files with 2 additions and 2 deletions
|
@ -225,7 +225,7 @@ void PairingDialog::WorkerThread()
|
||||||
BluetoothFindDeviceClose(deviceFind);
|
BluetoothFindDeviceClose(deviceFind);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#elif BOOST_OS_LINUX
|
#elif defined(HAS_BLUEZ)
|
||||||
void PairingDialog::WorkerThread()
|
void PairingDialog::WorkerThread()
|
||||||
{
|
{
|
||||||
constexpr static uint8_t LIAC_LAP[] = {0x00, 0x8b, 0x9e};
|
constexpr static uint8_t LIAC_LAP[] = {0x00, 0x8b, 0x9e};
|
||||||
|
|
|
@ -104,6 +104,6 @@ if (ENABLE_WXWIDGETS)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
if (UNIX AND NOT APPLE)
|
if (ENABLE_BLUEZ)
|
||||||
target_link_libraries(CemuInput PRIVATE bluez::bluez)
|
target_link_libraries(CemuInput PRIVATE bluez::bluez)
|
||||||
endif ()
|
endif ()
|
Loading…
Add table
Add a link
Reference in a new issue