summaryrefslogtreecommitdiff
path: root/support-files
diff options
context:
space:
mode:
Diffstat (limited to 'support-files')
-rw-r--r--support-files/CMakeLists.txt61
-rw-r--r--support-files/Makefile.am3
2 files changed, 63 insertions, 1 deletions
diff --git a/support-files/CMakeLists.txt b/support-files/CMakeLists.txt
new file mode 100644
index 00000000000..f8aa1f329f5
--- /dev/null
+++ b/support-files/CMakeLists.txt
@@ -0,0 +1,61 @@
+# Copyright (C) 2009 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
+
+IF(WIN32)
+ SET(localstatedir "C:\\mysql\\data")
+ SET(install_destination .)
+ SET(ini_file_extension "ini")
+ELSE()
+ SET(localstatedir "/usr/local/mysql/data")
+ SET(prefix "/usr/local")
+ SET(libexedir "/usr/local/mysql/bin")
+ SET(bindir "/usr/local/mysql/bin" )
+ SET(sbindir "/usr/local/mysql/bin")
+ SET(datadir "/usr/local/mysql/data")
+ SET(CC ${CMAKE_C_COMPILER})
+ SET(CXX ${CMAKE_CXX_COMPILER})
+ SET(CFLAGS ${CMAKE_C_COMPILE_FLAGS})
+ SET(CXXFLAGS ${CMAKE_COMPILE_CXX_FLAGS})
+ SET(MYSQLD_USER "mysql")
+ SET(install_destination "support-files")
+ SET(ini_file_extension "cnf")
+ENDIF()
+
+FOREACH(inifile my-huge my-innodb-heavy-4G my-large my-medium my-small)
+ CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/${inifile}.cnf.sh
+ ${CMAKE_CURRENT_BINARY_DIR}/${inifile}.${ini_file_extension} @ONLY)
+ INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/${inifile}.${ini_file_extension} DESTINATION ${install_destination})
+
+ENDFOREACH()
+
+IF(UNIX)
+ FILE(GLOB ndb_ini_files ${CMAKE_CURRENT_SOURCE_DIR}/*.ini)
+ INSTALL(FILES ${ndb_ini_files} DESTINATION ${install_destination})
+
+ FOREACH(script mysql.server mysqld_multi.server mysql-log-rotate)
+ CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/${script}.sh
+ ${CMAKE_CURRENT_BINARY_DIR}/${script} @ONLY )
+
+ INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/${script} DESTINATION support-files
+ PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
+ ENDFOREACH()
+ INSTALL(FILES magic DESTINATION support-files)
+ INSTALL(FILES mysql.m4 DESTINATION share/aclocal)
+ CONFIGURE_FILE(MySQL-shared-compat.spec.sh ${CMAKE_CURRENT_BINARY_DIR}/MySQL-shared-compat.spec @ONLY)
+ CONFIGURE_FILE(mysql.spec.sh ${CMAKE_CURRENT_BINARY_DIR}/mysql.spec @ONLY)
+ CONFIGURE_FILE(mysql.spec.sh ${CMAKE_CURRENT_BINARY_DIR}/mysql.${VERSION}.spec @ONLY)
+ CONFIGURE_FILE(MySQL-shared-compat.spec.sh ${CMAKE_CURRENT_BINARY_DIR}/MySQL-shared-compat.spec @ONLY)
+ENDIF()
+
diff --git a/support-files/Makefile.am b/support-files/Makefile.am
index 47e8c395b31..9718c6e7ebf 100644
--- a/support-files/Makefile.am
+++ b/support-files/Makefile.am
@@ -34,7 +34,8 @@ EXTRA_DIST = mysql.spec.sh \
MySQL-shared-compat.spec.sh \
ndb-config-2-node.ini.sh \
compiler_warnings.supp \
- dtrace
+ dtrace \
+ CMakeLists.txt
SUBDIRS = MacOSX RHEL4-SElinux