We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e69b1e9 commit 41ae266Copy full SHA for 41ae266
cpp/src/arrow/CMakeLists.txt
@@ -302,13 +302,22 @@ arrow_add_pkg_config("arrow")
302
303
add_arrow_test(allocator-test)
304
305
-add_arrow_test(array-test
306
- SOURCES
307
- array-test.cc
308
- array-binary-test.cc
309
- array-dict-test.cc
310
- array-list-test.cc
311
- array-struct-test.cc)
+if(WIN32)
+ add_arrow_test(array-test
+ SOURCES
+ array-test.cc
+ array-binary-test.cc
+ array-list-test.cc
+ array-struct-test.cc)
312
+else()
313
314
315
316
317
+ array-dict-test.cc
318
319
320
+endif()
321
322
add_arrow_test(buffer-test)
323
0 commit comments