Skip to content

Commit

Permalink
Merge pull request #1164 from kuzudb/fix-cmake-ubuntu-18
Browse files Browse the repository at this point in the history
Fix for CMake linking issue on Ubuntu 18.04
  • Loading branch information
mewim committed Jan 10, 2023
2 parents 70fc9e1 + 57c1b6b commit bd09081
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ add_subdirectory(transaction)

add_library(kuzu STATIC ${ALL_OBJECT_FILES})
target_link_libraries(kuzu PUBLIC antlr4_cypher antlr4_runtime utf8proc
Threads::Threads parquet_lib arrow_lib arrow_deps)
parquet_lib arrow_lib arrow_deps Threads::Threads)
target_include_directories(
kuzu PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>)

0 comments on commit bd09081

Please sign in to comment.