summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElena Stepanova <elenst@mariadb.com>2021-09-01 03:53:27 +0300
committerElena Stepanova <elenst@mariadb.com>2021-09-01 17:02:42 +0300
commita4a4d6a7c8e284c89a49fdab92130d4d052a7c50 (patch)
tree7d860f4cfb3a81eba9f85a58542ac42ecd0bfcca
parent8382c3260b37bb1f8a26b5dd10ac43df91ba1d15 (diff)
downloadmariadb-git-a4a4d6a7c8e284c89a49fdab92130d4d052a7c50.tar.gz
MDEV-26514 Option to build a separate test zip package on Windows
echo is needed for the tests
-rw-r--r--client/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt
index 37087b7c6c6..3be54680c0b 100644
--- a/client/CMakeLists.txt
+++ b/client/CMakeLists.txt
@@ -83,7 +83,7 @@ TARGET_LINK_LIBRARIES(mysqlslap ${CLIENT_LIB})
# "WIN32" also covers 64 bit. "echo" is used in some files below "mysql-test/".
IF(WIN32)
- MYSQL_ADD_EXECUTABLE(echo echo.c COMPONENT Junk)
+ MYSQL_ADD_EXECUTABLE(echo echo.c COMPONENT Test)
ENDIF(WIN32)
# async_example is just a code example, do not install it.