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/auth_examples | |
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/auth_examples')
-rw-r--r-- | plugin/auth_examples/CMakeLists.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugin/auth_examples/CMakeLists.txt b/plugin/auth_examples/CMakeLists.txt index 0c9fb32b77a..fb27289770f 100644 --- a/plugin/auth_examples/CMakeLists.txt +++ b/plugin/auth_examples/CMakeLists.txt @@ -15,17 +15,17 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA MYSQL_ADD_PLUGIN(dialog_examples dialog_examples.c - MODULE_ONLY) + MODULE_ONLY COMPONENT Test) MYSQL_ADD_PLUGIN(auth_test_plugin test_plugin.c - MODULE_ONLY) + MODULE_ONLY COMPONENT Test) MYSQL_ADD_PLUGIN(qa_auth_interface qa_auth_interface.c - MODULE_ONLY) + MODULE_ONLY COMPONENT Test) MYSQL_ADD_PLUGIN(qa_auth_server qa_auth_server.c - MODULE_ONLY) + MODULE_ONLY COMPONENT Test) MYSQL_ADD_PLUGIN(qa_auth_client qa_auth_client.c - MODULE_ONLY) + MODULE_ONLY COMPONENT Test) MYSQL_ADD_PLUGIN(mysql_clear_password clear_password_client.c - MODULE_ONLY) + MODULE_ONLY COMPONENT SharedLibraries) |