tools: Fix missing source file in CMake target

The `json_mutation_stream_parser.cc` file was not included in the
`scylla-tools` CMake target. This could lead to "undefined reference"
linker errors when building with CMake.

This commit adds the missing source file to the target's source list.

Closes scylladb/scylladb#26108
This commit is contained in:
Karol Nowacki
2025-09-18 11:18:51 +02:00
committed by Avi Kivity
parent c0db278c03
commit b5f3f2f4c5

View File

@@ -9,7 +9,8 @@ target_sources(tools
scylla-nodetool.cc
schema_loader.cc
utils.cc
lua_sstable_consumer.cc)
lua_sstable_consumer.cc
json_mutation_stream_parser.cc)
target_include_directories(tools
PUBLIC
${CMAKE_SOURCE_DIR}