We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4f5534 commit b88f4e3Copy full SHA for b88f4e3
mlir/examples/standalone/CMakeLists.txt
@@ -59,5 +59,7 @@ if(MLIR_ENABLE_BINDINGS_PYTHON)
59
endif()
60
add_subdirectory(test)
61
add_subdirectory(standalone-opt)
62
-add_subdirectory(standalone-plugin)
+if(NOT WIN32)
63
+ add_subdirectory(standalone-plugin)
64
+endif()
65
add_subdirectory(standalone-translate)
mlir/examples/standalone/test/CMakeLists.txt
@@ -14,8 +14,10 @@ set(STANDALONE_TEST_DEPENDS
14
standalone-capi-test
15
standalone-opt
16
standalone-translate
17
- StandalonePlugin
18
)
19
+ list(APPEND STANDALONE_TEST_DEPENDS StandalonePlugin)
20
21
if(MLIR_ENABLE_BINDINGS_PYTHON)
22
list(APPEND STANDALONE_TEST_DEPENDS StandalonePythonModules)
23
0 commit comments