While Updating zoom Meeting sdk to version 6.1.1.493

@chunsiong.zoom when i am trying to update my sdk i am getting this error while building the docker image

libmeetingsdk.so: undefined reference to `g_dbus_proxy_call_sync’
18.83 collect2: error: ld returned 1 exit status

@swatantra12singh in your cmakelists.txt file you will need to add references to GIO

You might need to change meetingSDKDemo to your own project name it the below doesn’t work

pkg_check_modules(GIO REQUIRED gio-2.0)

link_directories(${GLIB_LIBRARY_DIRS} ${GIO_LIBRARY_DIRS})
include_directories(${GLIB_INCLUDE_DIRS} ${GIO_INCLUDE_DIRS})
add_definitions(${GLIB_CFLAGS_OTHER} ${GIO_CFLAGS_OTHER})
target_link_libraries(meetingSDKDemo ${GLIB_LIBRARIES} ${GIO_LIBRARIES})