summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2021-12-20 15:08:48 -0500
committerScott Murray <scott.murray@konsulko.com>2021-12-20 15:10:49 -0500
commit0fee9bfb0f656b78f34c44542329760be2980892 (patch)
treecb5c7fb4d879f70229ff7e263933325af36cb089
parentfad93b42c285ffb463e9494070f40d3b339d732f (diff)
Comment out connman-glib dependency for nowmarlin_12.91.0marlin/12.91.012.91.0
The code changes to use the new connman-glib library are not yet integrated, comment out the accidentally included dependency for now to avoid build issues. Bug-AGL: SPEC-4182 Signed-off-by: Scott Murray <scott.murray@konsulko.com> Change-Id: I65446e3ff8ec6919cae146aac013a724ad58b093
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f69e364..38c2c2b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,7 +11,7 @@ find_package(Qt5Qml REQUIRED)
find_package(PkgConfig REQUIRED)
pkg_check_modules(glib REQUIRED IMPORTED_TARGET glib-2.0)
pkg_check_modules(bluez_glib REQUIRED IMPORTED_TARGET bluez-glib)
-pkg_check_modules(connman_glib REQUIRED IMPORTED_TARGET connman-glib)
+#pkg_check_modules(connman_glib REQUIRED IMPORTED_TARGET connman-glib)
include(GNUInstallDirs)
id='n69' href='#n69'>69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167