mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 17:20:26 +08:00
Change-Id: I67a6919bbbff1d30c7d6cdb257b41c87bad51e7f Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
23 lines
464 B
C++
23 lines
464 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/os_interface/os_library.h"
|
|
|
|
namespace Os {
|
|
// Compiler library names
|
|
extern const char *frontEndDllName;
|
|
extern const char *igcDllName;
|
|
extern const char *testDllName;
|
|
|
|
// OS specific directory separator
|
|
extern const char *fileSeparator;
|
|
|
|
// Os specific Metrics Library name
|
|
extern const char *metricsLibraryDllName;
|
|
}; // namespace Os
|