Skip to content

Commit 0f27668

Browse files
committed
Fix builds by adding missing types.cpp to CMake
In duckdb#168 `types.cpp` file was added to `CMakeLists.txt`, but, by mistake it was not added to `CMakeLists.txt.in` that is used to generate the `CMakeLists.txt` file on periodic engine sources import. This change adds `types.cpp` to both `CMakeLists.txt.in` and `CMakeLists.txt` to fix the build.
1 parent ae4f660 commit 0f27668

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,7 @@ add_library(duckdb_java SHARED
561561
src/jni/duckdb_java.cpp
562562
src/jni/functions.cpp
563563
src/jni/refs.cpp
564+
src/jni/types.cpp
564565
src/jni/util.cpp
565566
${DUCKDB_SRC_FILES})
566567

CMakeLists.txt.in

+1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ add_library(duckdb_java SHARED
103103
src/jni/duckdb_java.cpp
104104
src/jni/functions.cpp
105105
src/jni/refs.cpp
106+
src/jni/types.cpp
106107
src/jni/util.cpp
107108
${DUCKDB_SRC_FILES})
108109

0 commit comments

Comments
 (0)