Program Listing for File libcamera_version_utils.hpp
↰ Return to documentation for file (src/libcamera_version_utils.hpp)
#pragma once
#include <libcamera/version.h>
#define LIBCAMERA_VER_GE(major, minor, patch) \
((major < LIBCAMERA_VERSION_MAJOR) || \
(major == LIBCAMERA_VERSION_MAJOR && minor < LIBCAMERA_VERSION_MINOR) || \
(major == LIBCAMERA_VERSION_MAJOR && minor == LIBCAMERA_VERSION_MINOR && \
patch <= LIBCAMERA_VERSION_PATCH))