diff options
author | tkrokli <tkrokli@gmail.com> | 2018-01-09 21:02:38 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-05-16 22:04:37 +0200 |
commit | fdbc88e3de11d8811f60f0b6ed1c93fe9ea88d04 (patch) | |
tree | 80889837db2a522c8d3284f2efbaccaef48e0c35 | |
parent | e090c9a00eab7af40ba1b4090d5b5a456a3e4b33 (diff) |
Update copyright note for 2018 follow-up
File missed in main 2018 copyright update, commit f6b6f57a6da909426e3171d09f989c554f20b43d
- revert link from collab.kpsn.org back to www.trinitycore.info for branch consistency
- also some minor whitespace edits
(cherry picked from commit e2666fff35b3fe468739eb40b811b2fc1b8c1cea)
-rw-r--r-- | doc/UnixInstall.txt | 59 |
1 files changed, 29 insertions, 30 deletions
diff --git a/doc/UnixInstall.txt b/doc/UnixInstall.txt index b6a6745cdac..b9d6f95e231 100644 --- a/doc/UnixInstall.txt +++ b/doc/UnixInstall.txt @@ -6,10 +6,10 @@ WARNING: THIS DOCUMENTATION IS NOT ALWAYS UP TO DATE. FOR MORE UP-TO-DATE INFORMATION, CHECK THE TRINITY WIKI. ========================================================= -CHECK https://www.trinitycore.info/ FOR FURTHER HELP +CHECK https://www.trinitycore.info/ FOR FURTHER HELP. -These are instructions for installation in a Linux environment, if you are -using Windows refer to https://www.trinitycore.info/ +These are the instructions for installation in a Linux environment. +If you are using Windows, refer to https://www.trinitycore.info/ . Installing TrinityCore is fairly simple on a Linux machine, assuming you have all required applications @@ -19,11 +19,10 @@ https://www.trinitycore.info/display/tc/Requirements Most of these are included on common Linux distros, others you may have to install by your self. Please check your distro's repos. -Make a directory to build in, you can call it anything you want like -build or bin etc, then go into the directory and cmake and make. E.G. -you created a dir named build ad want to have your finalcompiled product -installed in /home/trinity/server, an example sequence of commands can -be : +Make a directory to build in, you can call it anything you want (like +build or bin etc.), then go into the directory and use cmake and make. +E.g. you created a dir named build and want to have your final compiled product +installed in /home/trinity/server/. An example sequence of commands can be: cmake ../ -DCMAKE_INSTALL_PREFIX=/home/trinity/server -DTOOLS=1 -DWITH_WARNINGS=1 make @@ -34,26 +33,26 @@ than where to install using flags built into our cmake files. Just open up CMakeLists.txt in the main folder and take a look at some of the flags like - SERVERS Build worldserver and bnetserver - SCRIPTS Build core with scripts included - TOOLS Build map/mmaps/vmap extraction/assembler tools - USE_SCRIPTPCH Use precompiled headers when compiling scripts - USE_COREPCH Use precompiled headers when compiling servers - WITH_WARNINGS Show all warnings during compile - WITH_COREDEBUG Include additional debug-code in core - CMAKE_INSTALL_PREFIX Set installation directory - NOJEM Do not build with jemalloc (advanced users only) - CONF_DIR Set path as default configuration directory - LIBSDIR Set path as default library directory - CMAKE_C_FLAGS Set C_FLAGS for compile (advanced users only) - CMAKE_CXX_FLAGS Set CXX_FLAGS for compile (advanced users only) - CMAKE_BUILD_TYPE Set buildtype - the supported modes are : - Release, MinSizeRel, RelWithDebInfo, Debug - -Of course, replace the paths in CMAKE_INSTALL_PREFIX with the -directory you wish to install TrinityCore to. The datadir is where maps, -DBCs, and SQLs are stored. The sysconfdir is where configuration files are stored. - -Once TrinityCore is installed you will need to apply database updates -where necessary. Furthermore, you must configure your installation by + SERVERS Build worldserver and authserver + SCRIPTS Build core with scripts included + TOOLS Build maps/mmaps/vmaps extraction/assembler tools + USE_SCRIPTPCH Use precompiled headers when compiling scripts + USE_COREPCH Use precompiled headers when compiling servers + WITH_WARNINGS Show all warnings during compile + WITH_COREDEBUG Include additional debug-code in core + CMAKE_INSTALL_PREFIX Set installation directory + NOJEM Do not build with jemalloc (advanced users only) + CONF_DIR Set path as default configuration directory + LIBSDIR Set path as default library directory + CMAKE_C_FLAGS Set C_FLAGS for compile (advanced users only) + CMAKE_CXX_FLAGS Set CXX_FLAGS for compile (advanced users only) + CMAKE_BUILD_TYPE Set build type - the supported modes are: + Release, MinSizeRel, RelWithDebInfo, Debug + +Of course, replace the paths in CMAKE_INSTALL_PREFIX with the directory you wish to +install TrinityCore to. The datadir is where maps, DBCs, and SQLs are stored. +The sysconfdir is where configuration files are stored. + +Once TrinityCore is installed, you will need to apply database updates +where necessary. Furthermore, you must configure your installation by editing the config files in the sysconfdir. |