Skip to content

Commit

Permalink
Move duckdb compile before re2 and fmt (7722)
Browse files Browse the repository at this point in the history
  • Loading branch information
JkSelf committed Nov 27, 2023
1 parent 895da15 commit e4f2c01
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,11 @@ else()
endif()
resolve_dependency(glog)

if(${VELOX_ENABLE_DUCKDB})
set_source(DuckDB)
resolve_dependency(DuckDB)
endif()

set_source(fmt)
resolve_dependency(fmt)

Expand Down Expand Up @@ -528,11 +533,6 @@ endif()
find_package(BISON 3.0.4 REQUIRED)
find_package(FLEX 2.5.13 REQUIRED)

if(${VELOX_ENABLE_DUCKDB})
set_source(DuckDB)
resolve_dependency(DuckDB)
endif()

include_directories(SYSTEM velox)
include_directories(SYSTEM velox/external)

Expand Down

0 comments on commit e4f2c01

Please sign in to comment.