Xonotic Forums
Building Xonotic - Printable Version

+- Xonotic Forums (https://forums.xonotic.org)
+-- Forum: Creating & Contributing (https://forums.xonotic.org/forumdisplay.php?fid=10)
+--- Forum: Xonotic - Development (https://forums.xonotic.org/forumdisplay.php?fid=12)
+--- Thread: Building Xonotic (/showthread.php?tid=3519)



Building Xonotic - bokiseles - 09-22-2012

Where can I find instructions on how to build Xonotic from source? I'm trying to get it to work on my home theatre PC.

Also, I couldn't help but notice how small the source files are compared to the full game. Is everything provided in the source?


RE: Building Xonotic - CuBe0wL - 09-23-2012

For compiling and understanding the project's git repo, here are some links:

http://dev.xonotic.org/projects/xonotic/wiki/Repository_Access
http://dev.xonotic.org/projects/xonotic/wiki/Git
http://dev.xonotic.org/projects/xonotic/wiki/Compiling_in_Windows

Too bad I can't help you with the file size issue.


RE: Building Xonotic - bokiseles - 09-23-2012

(09-23-2012, 03:18 AM)C.Brutail Wrote: For compiling and understanding the project's git repo, here are some links:

http://dev.xonotic.org/projects/xonotic/wiki/Repository_Access
http://dev.xonotic.org/projects/xonotic/wiki/Git
http://dev.xonotic.org/projects/xonotic/wiki/Compiling_in_Windows

Too bad I can't help you with the file size issue.

Thanks C.Brutail. What about compiling for Linux? Is it the same / similar procedure as for Windows (i.e. "./all compile")? Can I do this to the raw sources available here, or do I have to set up the full git repo to build?

EDIT: Nevermind, I missed the contents of the first link that answer my questions.


RE: Building Xonotic - edh - 09-23-2012

The source will be small in comparison. Only the engine, game code and map BSPs are compiled whereas all of the textures, sounds etc. are the same files that the artists making them work on, hence no sources for these.


RE: Building Xonotic - Mr. Bougo - 09-23-2012

Actually, in releases textures and sounds are compressed. The source repo contains tga and wav files.


RE: Building Xonotic - rocknroll237 - 09-23-2012

Is there a way of me only getting compressed stuff from GIT. I don't want to have a gigantic pile of uncompressed textures and sounds... I have limited internet usage per month.


RE: Building Xonotic - Mr. Bougo - 09-23-2012

No. Git is a file repository. It can't serve you files that it doesn't have, and it only has the uncompressed stuff.

EDIT: Although I guess the data is compressed on transfer. But it's still several gigabytes large.


RE: Building Xonotic - rocknroll237 - 09-23-2012

Okay, thanks for the answer.