Skip to content

Commit 22c763f

Browse files
committed
dont do mingw tests on 1.1.3
1 parent abe10fc commit 22c763f

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

extension_config.cmake

+14-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
# This file is included by DuckDB's build system. It specifies which extension to load
22

33
# Extension from this repo
4+
5+
# Disable tests on MinGW for 1.1.3, will be fixed in 1.1.4
6+
if (MINGW)
7+
set(DO_TESTS "")
8+
else ()
9+
set(DO_TESTS "LOAD_TESTS")
10+
endif()
11+
412
duckdb_extension_load(spatial
5-
SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}
6-
INCLUDE_DIR ${CMAKE_CURRENT_LIST_DIR}/spatial/include
7-
LOAD_TESTS
8-
DONT_LINK
9-
LINKED_LIBS "../../deps/local/lib/*.a"
10-
)
13+
SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}
14+
INCLUDE_DIR ${CMAKE_CURRENT_LIST_DIR}/spatial/include
15+
${DO_TESTS}
16+
DONT_LINK
17+
LINKED_LIBS "../../deps/local/lib/*.a"
18+
)

0 commit comments

Comments
 (0)