server/contrib/vmap_assembler
Schmoozerd 8068dcf6dd [11875] Update Copyright notice to year 2012
Start timemachine and a Happy new year to all!
2012-01-16 17:43:59 +01:00
..
VC90
VC100
.gitignore
CMakeLists.txt [11875] Update Copyright notice to year 2012 2012-01-16 17:43:59 +01:00
README
vmap_assembler.cpp [11875] Update Copyright notice to year 2012 2012-01-16 17:43:59 +01:00
vmap_assemblerVC90.sln
vmap_assemblerVC100.sln

Linux:

1. Building

	cd to contrib/vmap_assembler/ and execute:

	$ cmake .
	$ make

	You should now have an executable file vmap_assembler

2. Assembling vmaps

	Use the created executable to create the vmap files for MaNGOS.
	The executable takes two arguments:

	vmap_assembler <input_dir> <output_dir>

	Example:
	$ ./vmap_assembler Buildings vmaps

	<output_dir> has to exist already and shall be empty.
	The resulting files in <output_dir> are expected to be found in ${DataDir}/vmaps
	by mangos-worldd (DataDir is set in mangosd.conf).

###########################
Windows:

1. Building

	Build the solution in contrib\vmap_assembler\
	Resulting binaries will be in contrib\vmap_assembler\bin\$(PlatformName)_$(ConfigurationName)\

2. Assembling vmaps

	Use the created executable (from command prompt) to create the vmap files for MaNGOS.
	The executable takes two arguments:

	vmap_assembler.exe <input_dir> <output_dir>

	Example:
	C:\my_data_dir\> vmap_assembler.exe Buildings vmaps

	<output_dir> has to exist already and shall be empty.
	The resulting files in <output_dir> are expected to be found in ${DataDir}\vmaps
	by mangos-worldd (DataDir is set in mangosd.conf).