diff options
author | Vladislav Vaintroub <wlad@montyprogram.com> | 2012-03-16 20:52:17 +0100 |
---|---|---|
committer | Vladislav Vaintroub <wlad@montyprogram.com> | 2012-03-16 20:52:17 +0100 |
commit | 49d6568aaebd96261afe386f49f142def45a453e (patch) | |
tree | 9a3651a9c640eff4821a48f526209e9755f19105 /plugin/win_auth_client | |
parent | c5e1fb6720fd12ec89ead4a7344e7cf2a96578e8 (diff) | |
download | mariadb-git-49d6568aaebd96261afe386f49f142def45a453e.tar.gz |
Reduce size of windows MSI by approx. 50%
- Mark test components, plugins etc with COMPONENT Test, to get them excluded from the MSI
- Only include debug symbols for client and embedded libs and also
mysqld.exe and server plugins (so we can still can get a callstack in case of crash)
The rest (all *.pdbs, test components, MTR) can be obtained from the big ZIP distribution, if required.
Diffstat (limited to 'plugin/win_auth_client')
-rw-r--r-- | plugin/win_auth_client/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/win_auth_client/CMakeLists.txt b/plugin/win_auth_client/CMakeLists.txt index 1e65673adbd..a24f6b267f6 100644 --- a/plugin/win_auth_client/CMakeLists.txt +++ b/plugin/win_auth_client/CMakeLists.txt @@ -29,6 +29,6 @@ IF(WIN32) MYSQL_ADD_PLUGIN(authentication_windows_client ${PLUGIN_SOURCES} ${HEADERS} LINK_LIBRARIES Secur32 - MODULE_ONLY) + MODULE_ONLY COMPONENT SharedLibraries) ENDIF(WIN32) |