We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abe10fc commit 22c763fCopy full SHA for 22c763f
extension_config.cmake
@@ -1,10 +1,18 @@
1
# This file is included by DuckDB's build system. It specifies which extension to load
2
3
# 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
12
duckdb_extension_load(spatial
- SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}
- INCLUDE_DIR ${CMAKE_CURRENT_LIST_DIR}/spatial/include
- LOAD_TESTS
- DONT_LINK
- LINKED_LIBS "../../deps/local/lib/*.a"
-)
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