aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql/CMakeLists.txt2
-rw-r--r--sql/auth_database.sql (renamed from sql/realmd.sql)0
-rw-r--r--sql/character_database.sql (renamed from sql/characters.sql)0
-rw-r--r--sql/full/CMakeLists.txt4
-rw-r--r--sql/tools/CMakeLists.txt5
-rw-r--r--sql/tools/create_mysql.sql (renamed from sql/create_mysql.sql)0
-rw-r--r--sql/tools/drop_mysql.sql (renamed from sql/drop_mysql.sql)0
-rw-r--r--sql/updates/2.4.3_old/CMakeLists.txt4
-rw-r--r--sql/updates/3.0.9_old/CMakeLists.txt4
-rw-r--r--sql/updates/3.1.3_old/CMakeLists.txt4
-rw-r--r--sql/updates/3.2.2a_old/CMakeLists.txt4
-rw-r--r--sql/updates/3.3.2_old/CMakeLists.txt4
-rw-r--r--sql/updates/3.3.3a_old/CMakeLists.txt4
-rw-r--r--sql/updates/CMakeLists.txt4
-rw-r--r--sql/world_database.sql (renamed from sql/world.sql)0
15 files changed, 14 insertions, 25 deletions
diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt
index 7f562ce1dfb..e662e2fe07d 100644
--- a/sql/CMakeLists.txt
+++ b/sql/CMakeLists.txt
@@ -1,5 +1,5 @@
add_subdirectory(updates)
-add_subdirectory(FULL)
+add_subdirectory(full)
########### install files ###############
diff --git a/sql/realmd.sql b/sql/auth_database.sql
index 50940b45705..50940b45705 100644
--- a/sql/realmd.sql
+++ b/sql/auth_database.sql
diff --git a/sql/characters.sql b/sql/character_database.sql
index 6ec8cd968e9..6ec8cd968e9 100644
--- a/sql/characters.sql
+++ b/sql/character_database.sql
diff --git a/sql/full/CMakeLists.txt b/sql/full/CMakeLists.txt
index 6c48ff4c8ca..554ff9ba184 100644
--- a/sql/full/CMakeLists.txt
+++ b/sql/full/CMakeLists.txt
@@ -1,7 +1,5 @@
########### install files ###############
FILE(GLOB _SQL *.sql)
-FILE(GLOB README readme.txt)
-install(FILES ${_SQL} DESTINATION share/trinity/sql/FULL)
-install(FILES ${README} DESTINATION share/trinity/sql/FULL) \ No newline at end of file
+install(FILES ${README} DESTINATION share/trinity/sql/full) \ No newline at end of file
diff --git a/sql/tools/CMakeLists.txt b/sql/tools/CMakeLists.txt
new file mode 100644
index 00000000000..91cb61ec84e
--- /dev/null
+++ b/sql/tools/CMakeLists.txt
@@ -0,0 +1,5 @@
+########### install files ###############
+
+FILE(GLOB _SQL *.sql)
+
+install(FILES ${_SQL} DESTINATION share/trinity/sql/tools) \ No newline at end of file
diff --git a/sql/create_mysql.sql b/sql/tools/create_mysql.sql
index dc272ebf697..dc272ebf697 100644
--- a/sql/create_mysql.sql
+++ b/sql/tools/create_mysql.sql
diff --git a/sql/drop_mysql.sql b/sql/tools/drop_mysql.sql
index c0ec81e378f..c0ec81e378f 100644
--- a/sql/drop_mysql.sql
+++ b/sql/tools/drop_mysql.sql
diff --git a/sql/updates/2.4.3_old/CMakeLists.txt b/sql/updates/2.4.3_old/CMakeLists.txt
index 229a6de626c..585813a934b 100644
--- a/sql/updates/2.4.3_old/CMakeLists.txt
+++ b/sql/updates/2.4.3_old/CMakeLists.txt
@@ -1,5 +1,3 @@
FILE(GLOB _SQL_243 *.sql)
-INSTALL(FILES
-${_SQL_243}
-DESTINATION share/trinity/sql/updates/2.4.3_updates) \ No newline at end of file
+INSTALL(FILES ${_SQL_243} DESTINATION share/trinity/sql/updates/2.4.3_old) \ No newline at end of file
diff --git a/sql/updates/3.0.9_old/CMakeLists.txt b/sql/updates/3.0.9_old/CMakeLists.txt
index 7d2b2d975d3..d09917d76f9 100644
--- a/sql/updates/3.0.9_old/CMakeLists.txt
+++ b/sql/updates/3.0.9_old/CMakeLists.txt
@@ -1,5 +1,3 @@
FILE(GLOB _SQL_309 *.sql)
-INSTALL(FILES
-${_SQL_309}
-DESTINATION share/trinity/sql/updates/3.0.9_old) \ No newline at end of file
+INSTALL(FILES ${_SQL_309} DESTINATION share/trinity/sql/updates/3.0.9_old) \ No newline at end of file
diff --git a/sql/updates/3.1.3_old/CMakeLists.txt b/sql/updates/3.1.3_old/CMakeLists.txt
index 1c99a2be619..5a99663dff5 100644
--- a/sql/updates/3.1.3_old/CMakeLists.txt
+++ b/sql/updates/3.1.3_old/CMakeLists.txt
@@ -1,5 +1,3 @@
FILE(GLOB _SQL_313 *.sql)
-INSTALL(FILES
-${_SQL_313}
-DESTINATION share/trinity/sql/updates/3.1.3_old) \ No newline at end of file
+INSTALL(FILES ${_SQL_313} DESTINATION share/trinity/sql/updates/3.1.3_old) \ No newline at end of file
diff --git a/sql/updates/3.2.2a_old/CMakeLists.txt b/sql/updates/3.2.2a_old/CMakeLists.txt
index e6193267b8a..391d4895850 100644
--- a/sql/updates/3.2.2a_old/CMakeLists.txt
+++ b/sql/updates/3.2.2a_old/CMakeLists.txt
@@ -1,5 +1,3 @@
FILE(GLOB _SQL_322 *.sql)
-INSTALL(FILES
-${_SQL_322}
-DESTINATION share/trinity/sql/updates/3.2.2a_old) \ No newline at end of file
+INSTALL(FILES ${_SQL_322} DESTINATION share/trinity/sql/updates/3.2.2a_old) \ No newline at end of file
diff --git a/sql/updates/3.3.2_old/CMakeLists.txt b/sql/updates/3.3.2_old/CMakeLists.txt
index 87734d93da3..75f051dcede 100644
--- a/sql/updates/3.3.2_old/CMakeLists.txt
+++ b/sql/updates/3.3.2_old/CMakeLists.txt
@@ -1,5 +1,3 @@
FILE(GLOB _SQL_332 *.sql)
-INSTALL(FILES
-${_SQL_332}
-DESTINATION share/trinity/sql/updates/3.3.2_old) \ No newline at end of file
+INSTALL(FILES ${_SQL_332} DESTINATION share/trinity/sql/updates/3.3.2_old) \ No newline at end of file
diff --git a/sql/updates/3.3.3a_old/CMakeLists.txt b/sql/updates/3.3.3a_old/CMakeLists.txt
index 94143fe1e5b..8557b4d4bf3 100644
--- a/sql/updates/3.3.3a_old/CMakeLists.txt
+++ b/sql/updates/3.3.3a_old/CMakeLists.txt
@@ -1,5 +1,3 @@
FILE(GLOB _SQL_333 *.sql)
-INSTALL(FILES
-${_SQL_333}
-DESTINATION share/trinity/sql/updates/3.3.3a_old) \ No newline at end of file
+INSTALL(FILES ${_SQL_333} DESTINATION share/trinity/sql/updates/3.3.3a_old) \ No newline at end of file
diff --git a/sql/updates/CMakeLists.txt b/sql/updates/CMakeLists.txt
index 68639a4b265..0d2d6cd6bfa 100644
--- a/sql/updates/CMakeLists.txt
+++ b/sql/updates/CMakeLists.txt
@@ -7,6 +7,4 @@ add_subdirectory(3.3.3a_old)
FILE(GLOB _SQL_UPDATES *.sql)
-INSTALL(FILES
-${_SQL_UPDATES}
-DESTINATION share/trinity/sql/updates)
+INSTALL(FILES ${_SQL_UPDATES} DESTINATION share/trinity/sql/updates)
diff --git a/sql/world.sql b/sql/world_database.sql
index 692927a2fdf..692927a2fdf 100644
--- a/sql/world.sql
+++ b/sql/world_database.sql