From 110f437a9d30739d20d5079d394233155ed739c4 Mon Sep 17 00:00:00 2001 From: David Sisson Date: Wed, 6 Mar 2024 16:01:45 -0800 Subject: [PATCH] Renamed tool file to include the name of the tool. --- src/substrait/common/CMakeLists.txt | 2 +- src/substrait/common/{Tool.cpp => PlanTransformerTool.cpp} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/substrait/common/{Tool.cpp => PlanTransformerTool.cpp} (100%) diff --git a/src/substrait/common/CMakeLists.txt b/src/substrait/common/CMakeLists.txt index 2061b526..d706c63f 100644 --- a/src/substrait/common/CMakeLists.txt +++ b/src/substrait/common/CMakeLists.txt @@ -28,6 +28,6 @@ install(TARGETS substrait_io LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}) install(FILES ../../../include/substrait/common/Io.h DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/substrait/common") -add_executable(plantransformer Tool.cpp) +add_executable(plantransformer PlanTransformerTool.cpp) target_link_libraries(plantransformer substrait_io) diff --git a/src/substrait/common/Tool.cpp b/src/substrait/common/PlanTransformerTool.cpp similarity index 100% rename from src/substrait/common/Tool.cpp rename to src/substrait/common/PlanTransformerTool.cpp