Skip to content

Commit

Permalink
dont do mingw tests on 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxxen committed Nov 22, 2024
1 parent abe10fc commit 22c763f
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions extension_config.cmake
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# This file is included by DuckDB's build system. It specifies which extension to load

# Extension from this repo

# Disable tests on MinGW for 1.1.3, will be fixed in 1.1.4
if (MINGW)
set(DO_TESTS "")
else ()
set(DO_TESTS "LOAD_TESTS")
endif()

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"
)
SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}
INCLUDE_DIR ${CMAKE_CURRENT_LIST_DIR}/spatial/include
${DO_TESTS}
DONT_LINK
LINKED_LIBS "../../deps/local/lib/*.a"
)

0 comments on commit 22c763f

Please sign in to comment.