blob: ce5d10be5c3e83104e98ea3ae09a6084fa588710 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# -*- cmake -*-
include(Prebuilt)
add_library( ll::dbus INTERFACE IMPORTED)
# Only define this when using conan, lls prebuild is brokenb
if( USE_CONAN )
target_compile_definitions( ll::dbus INTERFACE LL_DBUS_ENABLED )
endif()
use_conan_binary(dbus)
use_prebuilt_binary(dbus_glib)
|