Skip to content

Commit

Permalink
Add velox_type_tz to velox_config target (facebookincubator#9995)
Browse files Browse the repository at this point in the history
Summary:
`MemConfig::validateConfig()` calls `util::getTimeZoneID` which is defined in velox_type_tz.
Add this missing dependency.

Pull Request resolved: facebookincubator#9995

Reviewed By: amitkdutta

Differential Revision: D58054545

Pulled By: kgpai

fbshipit-source-id: d6759a41437df9861c6041c5ba8f7fe622265602
  • Loading branch information
majetideepak authored and facebook-github-bot committed Jun 3, 2024
1 parent 046ccd4 commit 277d5c5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion velox/core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ if(${VELOX_BUILD_TESTING})
endif()

add_library(velox_config Config.cpp)
target_link_libraries(velox_config PUBLIC velox_exception Folly::folly)
target_link_libraries(
velox_config
PUBLIC velox_exception Folly::folly
PRIVATE velox_type_tz)

add_library(velox_core Expressions.cpp PlanFragment.cpp PlanNode.cpp
QueryConfig.cpp QueryCtx.cpp SimpleFunctionMetadata.cpp)
Expand Down

0 comments on commit 277d5c5

Please sign in to comment.