summaryrefslogtreecommitdiff
path: root/indra/cmake/DBusGlib.cmake
diff options
context:
space:
mode:
authorNicky <nicky.dasmijn@posteo.nl>2022-07-17 17:51:25 +0200
committerNicky <nicky.dasmijn@posteo.nl>2022-07-17 17:51:25 +0200
commit3f31d0b5a70af4ebf746d40d478b4e948e904a87 (patch)
tree140cd865990a6a892181612fd7ff1d9572c036a0 /indra/cmake/DBusGlib.cmake
parentc66f444d2b3af7c5ea5220db5302b693bbc54f54 (diff)
Be more explicit: Rename use_conan_binary to use_system_binary, this will allow us to reuse the macro for more than just conan.
Diffstat (limited to 'indra/cmake/DBusGlib.cmake')
-rw-r--r--indra/cmake/DBusGlib.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/cmake/DBusGlib.cmake b/indra/cmake/DBusGlib.cmake
index 9151742fe0..f75018ad0e 100644
--- a/indra/cmake/DBusGlib.cmake
+++ b/indra/cmake/DBusGlib.cmake
@@ -3,11 +3,11 @@ include(Prebuilt)
add_library( ll::dbus INTERFACE IMPORTED)
-# Only define this when using conan, lls prebuild is broken
-if( USE_CONAN )
+# Only define this when not using the prebuild 3ps, lls prebuild is broken
+if( NOT USE_AUTOBUILD_3P )
target_compile_definitions( ll::dbus INTERFACE LL_DBUS_ENABLED )
endif()
-use_conan_binary(dbus)
+use_system_binary(dbus)
use_prebuilt_binary(dbus_glib)