diff options
author | unknown <knielsen@mysql.com> | 2006-03-16 13:30:59 +0100 |
---|---|---|
committer | unknown <knielsen@mysql.com> | 2006-03-16 13:30:59 +0100 |
commit | 6091d5c7a0362bdd2d9ae30768036922b9b0ba81 (patch) | |
tree | f9d6bc18750cf196812c9b7962c09e4a96917e04 /client/cmakelists.txt | |
parent | 902449b5f422a445231a5bfe8ad2ac405b402249 (diff) | |
download | mariadb-git-6091d5c7a0362bdd2d9ae30768036922b9b0ba81.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/cmakelists.txt')
-rw-r--r-- | client/cmakelists.txt | 2 |
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) |