The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build/meson: make vive_config lib and link to vive, libsurvive

authored by

Christoph Haag and committed by
Jakob Bornecrantz
721b1593 a2e7e1c3

+17 -3
+17 -3
src/xrt/drivers/meson.build
··· 154 154 build_by_default: 'v4l2' in drivers, 155 155 ) 156 156 157 + lib_vive_config = static_library( 158 + 'vive_config', 159 + files( 160 + 'vive/vive_config.c', 161 + 'vive/vive_config.h', 162 + ), 163 + include_directories: [ 164 + xrt_include, 165 + cjson_include, 166 + ], 167 + dependencies: [aux, zlib], 168 + build_by_default: 'vive' in drivers or 'survive' in drivers, 169 + ) 170 + 157 171 lib_drv_vive = static_library( 158 172 'drv_vive', 159 173 files( ··· 165 179 'vive/vive_prober.c', 166 180 'vive/vive_controller.c', 167 181 'vive/vive_controller.h', 168 - 'vive/vive_config.c', 169 - 'vive/vive_config.h', 170 182 'vive/vive_lighthouse.c', 171 183 'vive/vive_lighthouse.h', 172 184 ), ··· 176 188 ], 177 189 dependencies: [aux, zlib], 178 190 build_by_default: 'vive' in drivers, 191 + link_with: lib_vive_config 179 192 ) 180 193 181 194 lib_drv_survive = static_library( ··· 184 197 'survive/survive_driver.c', 185 198 'survive/survive_interface.h', 186 199 'survive/survive_wrap.c', 187 - 'survive/survive_wrap.h' 200 + 'survive/survive_wrap.h', 188 201 ), 189 202 include_directories: [ 190 203 xrt_include, ··· 192 205 ], 193 206 dependencies: [aux, zlib, survive], 194 207 build_by_default: 'survive' in drivers, 208 + link_with: lib_vive_config 195 209 ) 196 210 197 211 lib_drv_daydream = static_library(