Difference between revisions of "How to build from source"

From OdaWiki
(Compiling)
(Getting the source)
 
(41 intermediate revisions by 8 users not shown)
Line 1: Line 1:
 
Odamex is open source.  This means that it is possible to obtain and compile Odamex from source if you so desire.  The Odamex team wishes to make this process as painless as possible, therefore detailed instructions for how to build Odamex are provided in this section.
 
Odamex is open source.  This means that it is possible to obtain and compile Odamex from source if you so desire.  The Odamex team wishes to make this process as painless as possible, therefore detailed instructions for how to build Odamex are provided in this section.
  
== Step 1: Getting the source ==
+
=Getting the source=
 
There are two ways to obtain the source to Odamex:
 
There are two ways to obtain the source to Odamex:
 +
*• [http://odamex.net/ Download] the latest stable version from the official Odamex website,
 +
*• Get the absolute latest modifications through anonymous [[Github]] access, located at https://github.com/odamex/odamex .
  
* [http://odamex.net/ Download] the latest stable version from the official Odamex website
+
=Getting required files=
* Get the absolute latest modifications through anonymous [[Subversion]] access
+
When you download Odamex, it's almost ready to go, right out of the box.  However, you need something to compile it with.  In addition, Odamex client and launcher rely on extra libraries in order to function: SDL2 and SDL2_mixer are required for the client, and wxWidgets 3.0 for the launcher.
  
== Step 2: Getting required files ==
+
*• See [[Required Libraries]] for details.
When you download Odamex, it's almost ready to go, right out of the box.  However, Odamex relies on extra libraries in order to function.
+
  
* [[Required Libraries]]
+
=Compiling Odamex=
 
+
== Step 3: Compiling ==
+
 
You have all the pieces of the puzzle...now it's time to build.
 
You have all the pieces of the puzzle...now it's time to build.
  
* [[Compiling using GCC]] on GNU/Linux, FreeBSD and Cygwin
+
==Code::Blocks IDE==
* [[Compiling using MinGW]] on Cygwin and Windows
+
Most Odamex developers use Code::Blocks, so there is a specific project file just for that editor.
* [[Compiling using Code::Blocks]] on Windows and Linux
+
*• See [[Compiling using Code::Blocks]]
* [[Compiling using Microsoft Visual Studio]] on Windows
+
*• See [[Compiling the Launcher using Code::Blocks]]
 +
 
 +
==CMake==
 +
In most other cases we use CMake to create project files or Makefiles that are tailored to each system.
 +
*• See [[Compiling using CMake]]
 +
 
 +
==Outdated==
 +
The following build methods no longer exist as of 0.6.1.  However, if you are building 0.6.0 or earlier, you might be interested in the information below.
 +
*[[Compiling using GCC]]
 +
*• [[Debian package]]
 +
*• [[Compiling using Xcode]]
 +
*• [[Cross compiling for Windows using MinGW]]
 +
 
 +
=Building odamex.wad=
 +
This will show you how to build the latest odamex.wad file.  This is usually not necessary, as an up-to-date version of odamex.wad is included in the source tree, but here's instructions for how to do it regardless.
 +
*[[Building odamex.wad using DeuTex]] on multiple platforms

Latest revision as of 15:23, 17 January 2019

Odamex is open source. This means that it is possible to obtain and compile Odamex from source if you so desire. The Odamex team wishes to make this process as painless as possible, therefore detailed instructions for how to build Odamex are provided in this section.

Getting the source

There are two ways to obtain the source to Odamex:

Getting required files

When you download Odamex, it's almost ready to go, right out of the box. However, you need something to compile it with. In addition, Odamex client and launcher rely on extra libraries in order to function: SDL2 and SDL2_mixer are required for the client, and wxWidgets 3.0 for the launcher.

Compiling Odamex

You have all the pieces of the puzzle...now it's time to build.

Code::Blocks IDE

Most Odamex developers use Code::Blocks, so there is a specific project file just for that editor.

CMake

In most other cases we use CMake to create project files or Makefiles that are tailored to each system.

Outdated

The following build methods no longer exist as of 0.6.1. However, if you are building 0.6.0 or earlier, you might be interested in the information below.

Building odamex.wad

This will show you how to build the latest odamex.wad file. This is usually not necessary, as an up-to-date version of odamex.wad is included in the source tree, but here's instructions for how to do it regardless.