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 /storage/example | |
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 'storage/example')
-rw-r--r-- | storage/example/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/example/CMakeLists.txt b/storage/example/CMakeLists.txt index 53f5d6619a0..f0ff3e15b4d 100644 --- a/storage/example/CMakeLists.txt +++ b/storage/example/CMakeLists.txt @@ -14,4 +14,4 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA SET(EXAMPLE_SOURCES ha_example.cc) -MYSQL_ADD_PLUGIN(example ${EXAMPLE_SOURCES} STORAGE_ENGINE MODULE_ONLY) +MYSQL_ADD_PLUGIN(example ${EXAMPLE_SOURCES} STORAGE_ENGINE MODULE_ONLY COMPONENT Test) |