From fb18010849a78e761c28784b66980751da643c52 Mon Sep 17 00:00:00 2001 From: Chang Liu Date: Tue, 14 May 2024 13:04:38 -0400 Subject: [PATCH] Add comment --- tools/shell/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/shell/CMakeLists.txt b/tools/shell/CMakeLists.txt index 144f4bd1e0..aeae49a3fc 100644 --- a/tools/shell/CMakeLists.txt +++ b/tools/shell/CMakeLists.txt @@ -4,6 +4,9 @@ add_executable(kuzu_shell linenoise.cpp shell_runner.cpp) if (NOT MSVC) + # On Windows, rename the executable to kuzu.exe will cause an error + # "multiple rules generate src/kuzu.lib", so we do not set the output + # name for MSVC. set_target_properties(kuzu_shell PROPERTIES OUTPUT_NAME kuzu) endif()