onnxruntime/cmake/test_dxcore.cpp

9 lines
182 B
C++
Raw Normal View History

2020-04-17 21:10:50 +00:00
// 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;
}