File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ set(TARGET_NAME vortex)
44project (${TARGET_NAME} _project)
55
66set (CMAKE_EXPORT_COMPILE_COMMANDS ON )
7- set (CMAKE_CXX_STANDARD 20 )
7+ set (CMAKE_CXX_STANDARD 17 )
88
99include (FetchContent)
1010FetchContent_Declare(
1111 Corrosion
1212 GIT_REPOSITORY https://github.com/corrosion-rs/corrosion.git
13- GIT_TAG v0.5.1
13+ GIT_TAG v0.5.2
1414)
1515
1616FetchContent_MakeAvailable(Corrosion)
@@ -25,7 +25,8 @@ endif ()
2525corrosion_import_crate(MANIFEST_PATH ../Cargo.toml
2626 CRATES vortex-ffi
2727 FEATURES duckdb
28- IMPORTED_CRATES vortex_ffi
28+ CRATE_TYPES staticlib
29+ FLAGS --crate-type =staticlib
2930)
3031
3132set (EXTENSION_NAME ${TARGET_NAME} _extension)
@@ -48,11 +49,6 @@ target_link_libraries(${EXTENSION_NAME}
4849 protobuf::libprotobuf
4950 ${SECURITY_FRAMEWORK}
5051)
51- target_link_libraries (${LOADABLE_EXTENSION_NAME}
52- vortex_ffi-shared
53- protobuf::libprotobuf
54- ${SECURITY_FRAMEWORK}
55- )
5652
5753add_subdirectory (test )
5854
You can’t perform that action at this time.
0 commit comments