Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/common/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
file(GLOB_RECURSE EXECUTION_SRC_FILES "${CMAKE_CURRENT_SOURCE_DIR}/*.cc")
add_library(neug_common OBJECT ${EXECUTION_SRC_FILES})
add_dependencies(neug_common neug_plan_proto)
add_dependencies(neug_common neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_common>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/binder/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ add_library(neug_binder
expression_mapper.cpp
function_evaluator.cpp
literal_evaluator.cpp)
add_dependencies(neug_binder neug_plan_proto)
add_dependencies(neug_binder neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_binder>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/binder/bind/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ add_library(
bind_use_database.cpp
bind_standalone_call_function.cpp
bind_table_function.cpp)
add_dependencies(neug_binder_bind neug_plan_proto)
add_dependencies(neug_binder_bind neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_binder_bind>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/binder/bind/copy/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ add_library(neug_binder_bind_copy
OBJECT
bind_copy_to.cpp
bind_copy_from.cpp)
add_dependencies(neug_binder_bind_copy neug_plan_proto)
add_dependencies(neug_binder_bind_copy neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_binder_bind_copy>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/binder/bind/ddl/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
add_library(neug_binder_bind_ddl
OBJECT
bound_create_table_info.cpp)
add_dependencies(neug_binder_bind_ddl neug_plan_proto)
add_dependencies(neug_binder_bind_ddl neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_binder_bind_ddl>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/binder/bind/read/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ add_library(neug_binder_bind_read
bind_load_from.cpp
bind_match.cpp
bind_unwind.cpp)
add_dependencies(neug_binder_bind_read neug_plan_proto)
add_dependencies(neug_binder_bind_read neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_binder_bind_read>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/binder/bind_expression/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ add_library(
bind_variable_expression.cpp
bind_lambda_expression.cpp)

add_dependencies(neug_binder_bind_expression neug_plan_proto)
add_dependencies(neug_binder_bind_expression neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_binder_bind_expression>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/binder/ddl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ add_library(
OBJECT
bound_alter_info.cpp
property_definition.cpp)
add_dependencies(neug_binder_ddl neug_plan_proto)
add_dependencies(neug_binder_ddl neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_binder_ddl>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/binder/expression/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ add_library(
scalar_function_expression.cpp
variable_expression.cpp)

add_dependencies(neug_binder_expression neug_plan_proto)
add_dependencies(neug_binder_expression neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_binder_expression>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/binder/query/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ add_library(
bound_set_clause.cpp
query_graph.cpp
query_graph_label_analyzer.cpp)
add_dependencies(neug_binder_query neug_plan_proto)
add_dependencies(neug_binder_query neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_binder_query>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/binder/rewriter/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ add_library(
match_clause_pattern_label_rewriter.cpp
normalized_query_part_match_rewriter.cpp
with_clause_projection_rewriter.cpp)
add_dependencies(neug_binder_rewriter neug_plan_proto)
add_dependencies(neug_binder_rewriter neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_binder_rewriter>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/binder/visitor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ add_library(
confidential_statement_analyzer.cpp
default_type_solver.cpp
property_collector.cpp)
add_dependencies(neug_binder_visitor neug_plan_proto)
add_dependencies(neug_binder_visitor neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_binder_visitor>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/catalog/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ add_library(neug_catalog
catalog_set.cpp
property_definition_collection.cpp)

add_dependencies(neug_catalog neug_plan_proto)
add_dependencies(neug_catalog neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_catalog>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/catalog/catalog_entry/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ add_library(neug_catalog_entry
type_catalog_entry.cpp
sequence_catalog_entry.cpp
index_catalog_entry.cpp)
add_dependencies(neug_catalog_entry neug_plan_proto)
add_dependencies(neug_catalog_entry neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_catalog_entry>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ add_library(compiler_common
type_utils.cpp
utils.cpp
windows_utils.cpp)
add_dependencies(compiler_common neug_plan_proto)
add_dependencies(compiler_common neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:compiler_common>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/common/arrow/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ add_library(neug_common_arrow
arrow_null_mask_tree.cpp
arrow_row_batch.cpp
arrow_type.cpp)
add_dependencies(neug_common_arrow neug_plan_proto)
add_dependencies(neug_common_arrow neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_common_arrow>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/common/copier_config/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ add_library(neug_common_copier_config
OBJECT
csv_reader_config.cpp
reader_config.cpp)
add_dependencies(neug_common_copier_config neug_plan_proto)
add_dependencies(neug_common_copier_config neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_common_copier_config>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/common/data_chunk/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ add_library(neug_common_data_chunk
data_chunk_collection.cpp
data_chunk_state.cpp
sel_vector.cpp)
add_dependencies(neug_common_data_chunk neug_plan_proto)
add_dependencies(neug_common_data_chunk neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_common_data_chunk>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/common/enums/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ add_library(neug_common_enums
drop_type.cpp
extend_direction_util.cpp
conflict_action.cpp)
add_dependencies(neug_common_enums neug_plan_proto)
add_dependencies(neug_common_enums neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_common_enums>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/common/task_system/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ add_library(neug_common_task_system
task_scheduler.cpp
progress_bar.cpp
terminal_progress_bar_display.cpp)
add_dependencies(neug_common_task_system neug_plan_proto)
add_dependencies(neug_common_task_system neug_proto)
set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_common_task_system>
PARENT_SCOPE)
2 changes: 1 addition & 1 deletion src/compiler/extension/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ add_library(neug_extension
extension_api.cpp
extension_entries.cpp
extension_manager.cpp)
add_dependencies(neug_extension neug_plan_proto)
add_dependencies(neug_extension neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_extension>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/function/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ add_library(neug_function
vector_date_functions.cpp
vector_string_functions.cpp
csv_export_function.cpp)
add_dependencies(neug_function neug_plan_proto neug_utils)
add_dependencies(neug_function neug_proto neug_utils)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_function>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/function/aggregate/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ add_library(neug_function_aggregate
min_max.cpp
sum.cpp
avg.cpp)
add_dependencies(neug_function_aggregate neug_plan_proto)
add_dependencies(neug_function_aggregate neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_function_aggregate>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/function/arithmetic/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ add_library(neug_function_arithmetic
modulo.cpp
negate.cpp
abs.cpp)
add_dependencies(neug_function_arithmetic neug_plan_proto)
add_dependencies(neug_function_arithmetic neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_function_arithmetic>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/function/cast/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
add_library(neug_function_cast
OBJECT
cast_array.cpp)
add_dependencies(neug_function_cast neug_plan_proto)
add_dependencies(neug_function_cast neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_function_cast>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/function/gds/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
add_library(gds_function
STATIC
rec_joins.cpp)
add_dependencies(gds_function neug_plan_proto)
add_dependencies(gds_function neug_proto)

target_include_directories(gds_function PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}/../include)
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/function/list/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ add_library(neug_list_function
list_creation.cpp
list_extract_function.cpp
list_unique_function.cpp)
add_dependencies(neug_list_function neug_plan_proto)
add_dependencies(neug_list_function neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_list_function>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/function/path/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ add_library(neug_function_path
properties_function.cpp
rels_function.cpp
semantic_function.cpp)
add_dependencies(neug_function_path neug_plan_proto)
add_dependencies(neug_function_path neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_function_path>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/function/pattern/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ add_library(neug_function_pattern
id_function.cpp
label_function.cpp
start_end_node_function.cpp)
add_dependencies(neug_function_pattern neug_plan_proto)
add_dependencies(neug_function_pattern neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_function_pattern>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/function/struct/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
add_library(neug_function_struct
OBJECT
struct_extract_function.cpp)
add_dependencies(neug_function_struct neug_plan_proto)
add_dependencies(neug_function_struct neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_function_struct>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/function/table/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ add_library(neug_table_function
bind_data.cpp
bind_input.cpp
table_function.cpp)
add_dependencies(neug_table_function neug_plan_proto)
add_dependencies(neug_table_function neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_table_function>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/gopt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ add_library(neug_gopt
g_query_converter.cpp
g_precedence.cpp
)
add_dependencies(neug_gopt neug_plan_proto)
add_dependencies(neug_gopt neug_proto)


set(ALL_OBJECT_FILES
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/graph/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ add_library(neug_graph
graph.cpp
graph_entry.cpp
on_disk_graph.cpp)
add_dependencies(neug_graph neug_plan_proto)
add_dependencies(neug_graph neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_graph>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/main/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ add_library(neug_compiler_main
query_summary.cpp
storage_manager.cpp
settings.cpp)
add_dependencies(neug_compiler_main neug_plan_proto)
add_dependencies(neug_compiler_main neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_compiler_main>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/optimizer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ add_library(neug_optimizer
remove_subquery_as_join.cpp
common_pattern_reuse_optimizer.cpp
project_join_condition_optimizer.cpp)
add_dependencies(neug_optimizer neug_plan_proto)
add_dependencies(neug_optimizer neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_optimizer>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/parser/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ add_library(neug_parser
parsed_statement_visitor.cpp
transformer.cpp)

add_dependencies(neug_parser neug_plan_proto)
add_dependencies(neug_parser neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_parser>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/parser/antlr_parser/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ add_library(neug_parser_antlr_parser
kuzu_cypher_parser.cpp
parser_error_listener.cpp
parser_error_strategy.cpp)
add_dependencies(neug_parser_antlr_parser neug_plan_proto)
add_dependencies(neug_parser_antlr_parser neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_parser_antlr_parser>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/parser/expression/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ add_library(neug_parser_expression
parsed_function_expression.cpp
parsed_property_expression.cpp
parsed_variable_expression.cpp)
add_dependencies(neug_parser_expression neug_plan_proto)
add_dependencies(neug_parser_expression neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_parser_expression>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/parser/transform/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ add_library(neug_parser_transform
transform_attach_database.cpp
transform_detach_database.cpp
transform_use_database.cpp)
add_dependencies(neug_parser_transform neug_plan_proto)
add_dependencies(neug_parser_transform neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_parser_transform>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/parser/visitor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ add_library(
OBJECT
standalone_call_rewriter.cpp
statement_read_write_analyzer.cpp)
add_dependencies(neug_parser_visitor neug_plan_proto)
add_dependencies(neug_parser_visitor neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_parser_visitor>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/planner/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ add_library(neug_compiler_planner
subplans_table.cpp
gopt_planner.cc
)
add_dependencies(neug_compiler_planner neug_plan_proto)
add_dependencies(neug_compiler_planner neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_compiler_planner>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/planner/join_order/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ add_library(neug_planner_join_order
join_plan_solver.cpp
join_tree.cpp
join_tree_constructor.cpp)
add_dependencies(neug_planner_join_order neug_plan_proto)
add_dependencies(neug_planner_join_order neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_planner_join_order>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/planner/operator/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ add_library(neug_planner_operator
logical_unwind.cpp
schema.cpp
logical_get_v.cpp)
add_dependencies(neug_planner_operator neug_plan_proto)
add_dependencies(neug_planner_operator neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_planner_operator>
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/planner/operator/extend/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ add_library(neug_planner_extend
base_logical_extend.cpp
logical_extend.cpp
logical_recursive_extend.cpp)
add_dependencies(neug_planner_extend neug_plan_proto)
add_dependencies(neug_planner_extend neug_proto)

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:neug_planner_extend>
Expand Down
Loading
Loading