blob: 9151742fe05b247c0c7d6488827755d454ada5de (
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 broken
if( USE_CONAN )
target_compile_definitions( ll::dbus INTERFACE LL_DBUS_ENABLED )
endif()
use_conan_binary(dbus)
use_prebuilt_binary(dbus_glib)
|