mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
8 lines
182 B
C++
8 lines
182 B
C++
// CMake's CHECK_INCLUDE_FILE_CXX macro can't be used because it doesn't check the machine's SDK folder
|
|
#if not __has_include("dxcore.h")
|
|
#error
|
|
#endif
|
|
|
|
int main() {
|
|
return 0;
|
|
}
|