mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Related-To: NEO-11752 - Adds zeIntelGetDriverVersionString to report the driver version string to the user in the format: Major.Minor.Patch+Optional Signed-off-by: Neil R. Spruit <neil.r.spruit@intel.com>
18 lines
376 B
C
18 lines
376 B
C
/*
|
|
* Copyright (C) 2018-2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#ifndef DRIVER_VERSION_H
|
|
#define DRIVER_VERSION_H
|
|
|
|
#cmakedefine NEO_OCL_DRIVER_VERSION ${NEO_OCL_DRIVER_VERSION}
|
|
#cmakedefine NEO_REVISION "${NEO_REVISION}"
|
|
|
|
#define NEO_VERSION_BUILD ${NEO_VERSION_BUILD}
|
|
#define NEO_VERSION_HOTFIX ${NEO_VERSION_HOTFIX}
|
|
|
|
#endif /* DRIVER_VERSION_H */
|