2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2022-11-29 12:31:17 +00:00
|
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-23 09:03:33 +01:00
|
|
|
#include "common/gtsysinfo.h"
|
2018-03-01 21:50:09 +01:00
|
|
|
#include "igfxfmid.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
|
|
|
|
|
namespace Os {
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// These options determine the Windows specific behavior for
|
|
|
|
|
// the runtime unit tests
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-07-29 00:47:55 +02:00
|
|
|
const char *frontEndDllName = "";
|
|
|
|
|
const char *igcDllName = "";
|
2022-12-06 19:23:03 +01:00
|
|
|
const char *gdiDllName = "";
|
2021-05-25 18:42:36 +02:00
|
|
|
const char *dxcoreDllName = "";
|
2017-12-21 00:45:38 +01:00
|
|
|
const char *testDllName = "test_dynamic_lib.dll";
|
2019-05-20 11:19:27 +02:00
|
|
|
const char *metricsLibraryDllName = "";
|
2018-06-12 21:54:39 +02:00
|
|
|
} // namespace Os
|