Skip to content

Commit b88f4e3

Browse files
committed
no StandalonePlugin on windows
1 parent d4f5534 commit b88f4e3

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

mlir/examples/standalone/CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,7 @@ if(MLIR_ENABLE_BINDINGS_PYTHON)
5959
endif()
6060
add_subdirectory(test)
6161
add_subdirectory(standalone-opt)
62-
add_subdirectory(standalone-plugin)
62+
if(NOT WIN32)
63+
add_subdirectory(standalone-plugin)
64+
endif()
6365
add_subdirectory(standalone-translate)

mlir/examples/standalone/test/CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ set(STANDALONE_TEST_DEPENDS
1414
standalone-capi-test
1515
standalone-opt
1616
standalone-translate
17-
StandalonePlugin
1817
)
18+
if(NOT WIN32)
19+
list(APPEND STANDALONE_TEST_DEPENDS StandalonePlugin)
20+
endif()
1921
if(MLIR_ENABLE_BINDINGS_PYTHON)
2022
list(APPEND STANDALONE_TEST_DEPENDS StandalonePythonModules)
2123
endif()

0 commit comments

Comments
 (0)