summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorunknown <knielsen@mysql.com>2006-03-16 13:30:59 +0100
committerunknown <knielsen@mysql.com>2006-03-16 13:30:59 +0100
commit85657de7fd4dbc4bf1fbc056ba16bb1887c6cafd (patch)
treef9d6bc18750cf196812c9b7962c09e4a96917e04 /client
parentae65b2d4ce1764bf5a06321cb243fb03e53cf603 (diff)
downloadmariadb-git-85657de7fd4dbc4bf1fbc056ba16bb1887c6cafd.tar.gz
Fix Windows CMake dependency problem.
client/cmakelists.txt: Fix dependency problem with the old GenError target. extra/cmakelists.txt: Fix dependency problem with the old GenError target. libmysql/cmakelists.txt: Fix dependency problem with the old GenError target. server-tools/instance-manager/cmakelists.txt: Fix dependency problem with the old GenError target. sql/cmakelists.txt: Fix dependency problem with the old GenError target. win/README: Fix dependency problem with the old GenError target.
Diffstat (limited to 'client')
-rw-r--r--client/cmakelists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/cmakelists.txt b/client/cmakelists.txt
index 5da9189b0ae..9c9e56d9b43 100644
--- a/client/cmakelists.txt
+++ b/client/cmakelists.txt
@@ -48,7 +48,7 @@ ADD_LIBRARY(mysqlclient ../mysys/array.c ../strings/bchange.c ../strings/bmove.c
../mysys/thr_mutex.c ../mysys/typelib.c ../vio/vio.c ../vio/viosocket.c
../vio/viossl.c ../vio/viosslfactories.c ../strings/xml.c)
-ADD_DEPENDENCIES(mysqlclient GenError)
+ADD_DEPENDENCIES(mysqlclient comp_err)
ADD_EXECUTABLE(mysql completion_hash.cc mysql.cc readline.cc sql_string.cc)
LINK_DIRECTORIES(${MYSQL_BINARY_DIR}/mysys ${MYSQL_BINARY_DIR}/zlib)
TARGET_LINK_LIBRARIES(mysql mysqlclient mysys yassl zlib dbug yassl taocrypt wsock32)