onnxruntime/cmake/test_dxcore.cpp
2020-04-17 14:10:50 -07:00

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;
}