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

Change-Id: Ia7e85468c3f1e937d34b67b0e279c013e8e3c190 Signed-off-by: Milczarek, Slawomir <slawomir.milczarek@intel.com>
28 lines
343 B
C++
28 lines
343 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "driver_version.h"
|
|
|
|
#ifdef QTR
|
|
#undef QTR
|
|
#endif
|
|
|
|
#ifdef TOSTR
|
|
#undef TOSTR
|
|
#endif
|
|
|
|
#define QTR(a) #a
|
|
#define TOSTR(b) QTR(b)
|
|
|
|
namespace NEO {
|
|
constexpr const char *driverVersion = TOSTR(NEO_DRIVER_VERSION);
|
|
}
|
|
|
|
#undef QTR
|
|
#undef TOSTR
|