summaryrefslogtreecommitdiff
path: root/cmake/build_configurations
diff options
context:
space:
mode:
authorVladislav Vaintroub <vvaintroub@mysql.com>2010-01-11 14:42:07 +0100
committerVladislav Vaintroub <vvaintroub@mysql.com>2010-01-11 14:42:07 +0100
commit4c872d51f63328955d8f2e22693ac539e9538862 (patch)
tree54452e4308325c5be5f211abcf08122b74799f2a /cmake/build_configurations
parent59e6fa7db17c96bde55a0673d2531f4dabea04e8 (diff)
downloadmariadb-git-4c872d51f63328955d8f2e22693ac539e9538862.tar.gz
Add option for specifying MYSQL build configurations.
Add mysql_release.cmake intended for use by the build team ( compile options, build settings to do MySQL releases)
Diffstat (limited to 'cmake/build_configurations')
-rw-r--r--cmake/build_configurations/mysql_release.cmake23
1 files changed, 23 insertions, 0 deletions
diff --git a/cmake/build_configurations/mysql_release.cmake b/cmake/build_configurations/mysql_release.cmake
new file mode 100644
index 00000000000..d72624c8ac7
--- /dev/null
+++ b/cmake/build_configurations/mysql_release.cmake
@@ -0,0 +1,23 @@
+# Copyright (C) 2010 Sun Microsystems, Inc
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; version 2 of the License.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+# This file includes build settings used for MySQL release
+
+SET(WITH_INNOBASE_STORAGE_ENGINE 1)
+SET(WITH_ARCHIVE_STORAGE_ENGINE 1)
+SET(WITH_BLACKHOLE_STORAGE_ENGINE 1)
+SET(WITH_FEDERATED_STORAGE_ENGINE 1)
+SET(WITHOUT_EXAMPLE_STORAGE_ENGINE 1)
+SET(WITH_EMBEDDED_SERVER 1)