diff options
author | Vladislav Vaintroub <vvaintroub@linux-rbsx> | 2009-12-10 03:48:21 +0100 |
---|---|---|
committer | Vladislav Vaintroub <vvaintroub@linux-rbsx> | 2009-12-10 03:48:21 +0100 |
commit | ef4685eccf5b93c6d6df16421dcd9d7e1705e115 (patch) | |
tree | 1c580e89204f8de7b64041f3e5ab14bd5eb9f4d0 /CMakeLists.txt | |
parent | 82b07c4d8a3d91b48f1407f566e3e534344e8db0 (diff) | |
download | mariadb-git-ef4685eccf5b93c6d6df16421dcd9d7e1705e115.tar.gz |
fix install_symlink on unixes other than osx
Diffstat (limited to 'CMakeLists.txt')
-rwxr-xr-x | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 51a50f682ba..b68bf2ae108 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -239,3 +239,5 @@ INSTALL(FILES COPYING EXCEPTIONS-CLIENT README DESTINATION .) IF(UNIX) INSTALL(FILES Docs/INSTALL-BINARY DESTINATION .) ENDIF() +GET_TARGET_PROPERTY(mysqld_location mysqld LOCATION) +INSTALL(FILES ${mysqld_location} DESTINATION win) |