diff options
author | kent@mysql.com/c-584072d5.010-2112-6f72651.cust.bredbandsbolaget.se <> | 2006-10-13 21:48:27 +0200 |
---|---|---|
committer | kent@mysql.com/c-584072d5.010-2112-6f72651.cust.bredbandsbolaget.se <> | 2006-10-13 21:48:27 +0200 |
commit | 0b7132eaf1033d96d492312d2163516922686db1 (patch) | |
tree | 92abda642bb40ade1f95bf45f3407cadcae18ed2 /client/CMakeLists.txt | |
parent | d0bd8a8a4194dfd5896cebcbc9ee49f936a8f8fe (diff) | |
download | mariadb-git-0b7132eaf1033d96d492312d2163516922686db1.tar.gz |
CMakeLists.txt:
Added mysql_upgrade target to Windows CMake build
Diffstat (limited to 'client/CMakeLists.txt')
-rw-r--r-- | client/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index 26cc36c7f6f..b2b734a48f4 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -65,6 +65,9 @@ TARGET_LINK_LIBRARIES(mysqldump mysqlclient mysys dbug yassl taocrypt zlib wsock ADD_EXECUTABLE(mysqlimport mysqlimport.c) TARGET_LINK_LIBRARIES(mysqlimport mysqlclient mysys dbug yassl taocrypt zlib wsock32) +ADD_EXECUTABLE(mysql_upgrade mysql_upgrade.c) +TARGET_LINK_LIBRARIES(mysql_upgrade mysqlclient mysys dbug yassl taocrypt zlib wsock32) + ADD_EXECUTABLE(mysqlshow mysqlshow.c) TARGET_LINK_LIBRARIES(mysqlshow mysqlclient mysys dbug yassl taocrypt zlib wsock32) |