summaryrefslogtreecommitdiff
path: root/plugin/auth_examples
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@montyprogram.com>2012-03-16 20:52:17 +0100
committerVladislav Vaintroub <wlad@montyprogram.com>2012-03-16 20:52:17 +0100
commit49d6568aaebd96261afe386f49f142def45a453e (patch)
tree9a3651a9c640eff4821a48f526209e9755f19105 /plugin/auth_examples
parentc5e1fb6720fd12ec89ead4a7344e7cf2a96578e8 (diff)
downloadmariadb-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.txt12
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)