mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
add some more clarity for unix makefiles
This commit is contained in:
parent
f72742710f
commit
5e5e2b3bab
1 changed files with 14 additions and 3 deletions
17
README.md
17
README.md
|
@ -96,13 +96,24 @@ In order to set up your own virtual world, you need to set up and run your own
|
|||
local "domain". At a minimum, you must run a domain-server, voxel-server,
|
||||
audio-mixer, and avatar-mixer to have a working virtual world. The audio-mixer and avatar-mixer are assignments given from the domain-server to any assignment-client that reports directly to it.
|
||||
|
||||
Complete the steps above to build the system components, using the default Cmake Unix Makefiles generator. Then from the terminal
|
||||
window, change directory into the build directory, make the needed components and then launch them.
|
||||
Complete the steps above to build the system components, using the default Cmake Unix Makefiles generator. Start with an empty build directory.
|
||||
|
||||
First we make the targets we'll need. From the build directory:
|
||||
cmake ..
|
||||
|
||||
Then from the terminal
|
||||
window, change directory into the build directory, make the needed components, and then launch them.
|
||||
|
||||
First we make the targets we'll need.
|
||||
|
||||
cd build
|
||||
make domain-server voxel-server assignment-client
|
||||
|
||||
If after this step you're seeing something like the following
|
||||
|
||||
make: Nothing to be done for `domain-server'.
|
||||
|
||||
you likely had Cmake generate Xcode project files and have not run `cmake ..` in a clean build directory.
|
||||
|
||||
Then, launch the static components - a domain-server and a voxel-server.
|
||||
|
||||
(cd domain-server && ./domain-server --local > /tmp/domain-server.log 2>&1 &)
|
||||
|
|
Loading…
Reference in a new issue