diff options
author | Vladislav Vaintroub <vvaintroub@mysql.com> | 2009-12-17 14:41:50 +0100 |
---|---|---|
committer | Vladislav Vaintroub <vvaintroub@mysql.com> | 2009-12-17 14:41:50 +0100 |
commit | 555d46ea7f1c02edf32b2102a3ff3f8dff7aa147 (patch) | |
tree | b9698e003a32f65faf28d6032f377916cf93b648 /libmysqld | |
parent | 2ff2d1873a989e1c7f304f64c57ff236d7c48750 (diff) | |
download | mariadb-git-555d46ea7f1c02edf32b2102a3ff3f8dff7aa147.tar.gz |
Replace ADD_EXECUTABLE with MYSQL_ADD_EXECUTABLE for binaries that are installed.
MYSQL_ADD_EXECUTABLE will instructs CPack where to install the exe. On Windows, it also
adds version resource and if -DSIGNCODE was given, will sign the exe in packaging step.
Diffstat (limited to 'libmysqld')
-rw-r--r-- | libmysqld/CMakeLists.txt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libmysqld/CMakeLists.txt b/libmysqld/CMakeLists.txt index b0131bddee0..211305bee76 100644 --- a/libmysqld/CMakeLists.txt +++ b/libmysqld/CMakeLists.txt @@ -120,9 +120,7 @@ ENDFOREACH() MERGE_LIBRARIES(mysqlserver STATIC ${EMBEDDED_LIBS} OUTPUT_NAME ${MYSQLSERVER_OUTPUT_NAME}) -MYSQL_INSTALL_TARGETS(mysqlserver DESTINATION lib) IF(MSVC AND NOT DISABLE_SHARED) MERGE_LIBRARIES(libmysqld SHARED ${LIBS} EXPORTS ${CLIENT_API_FUNCTIONS}) - MYSQL_INSTALL_TARGETS(libmysqld DESTINATION lib) ENDIF() |