1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
Building and installing Hedgewars
=================================
This file explains to you how to build/compile Hedgewars and how to install it.
See also: <https://hedgewars.org/kb/BuildingHedgewars>
Dependencies
------------
### Hardware dependencies
See README.md.
### Core dependencies
To compile and install Hedgewars, you need at least:
- A C++ compiler (e.g. GCC)
- CMake >= 2.6.0
- A make program (e.g. GNU Make)
- Free Pascal Compiler (FPC) >= 2.2.4
- Qt 5
- SDL >= 2.0
- SDL\_net >= 2.0
- SDL\_mixer >= 2.0
- SDL\_image >= 2.0
- SDL\_ttf >= 2.0
- PhysFS >= 3.0.0
On FreeBSD, you also need the package “fpc-rtl-extra”.
### Recommended optional dependencies
These are not strictly required to build Hedgewars, but it's
usually better to have them installed. Hedgewars has fallback mechanisms
in if these are not found on your system.
- Lua = 5.1.0
### Optional dependencies
For some additional features, you can optionally install these dependencies:
- For PNG screenshots:
- libpng >= 1.2
- For video recording:
- FFmpeg or Libav
- For the Hedgewars Server:
- GHC >= 6.10
- Various Haskell packages (see below)
Lua will be automatically built if not found.
### Hedgewars Server dependencies
The Hedgewars Server is an **optional** separate application.
It provides the online lobby and allows players to create rooms.
You will also be able to launch the server from the frontend
(network play → local network → start server).
**Most players do not need this!**
To compile it, you need:
- Glasgow Haskell Compiler (GHC) >= 6.10
- These Haskell packages:
- `containers`
- `vector`
- `bytestring`
- `network` >= 2.3
- `random`
- `time`
- `mtl` >= 2
- `sandi`
- `hslogger`
- `process`
- `deepseq`
- `utf8-string`
- `SHA`
- `entropy`
- `zlib` >= 0.5.3 and < 0.7
- `regex-tdfa`
- `binary` >= 0.8.5.1
Building
--------
### Summary
To build and install Hedgewars, obtain all dependencies, then run:
$ cmake .
$ make
# make install
### Step 1: Configure
For a default install with all dependencis, use this command:
$ cmake .
To build with a custom install directory, instead run:
$ cmake -DCMAKE_INSTALL_PREFIX="<install_prefix>" .
(Replace `<install_prefix>` with the directoy in which you
want Hedgewars to be installed.)
Add the `-DNOSERVER=ON` switch if you do not want to build
the server.
#### CMake options
For more detailed build settings, change some CMake options.
Run `ccmake` for an interactive way to edit them.
Important CMake options:
- `CMAKE_INSTALL_PREFIX`: Installation directory
- `NOSERVER`: Set to `ON` to *not* build the server
- `NOVIDEOREC`: Set to `ON` to *not* build the video recorder
### Step 2: Make
Run:
$ make
This creates the following files:
- `bin/hedgewars`: Hedgewars
- `bin/hwengine`: Game engine, can be used to play demos and saved games
- `bin/hedgewars-server`: Hedgewars Server (optional)
### Step 3: Installation
To install Hedgewars to the install directory run:
# make install
That's all! Enjoy!
Troubleshooting
---------------
### Qt is installed but it can't be found
If this happens, set the following CMake option:
QT_QMAKE_EXECUTABLE="<path_to_qmake>"
(Replace `<path_to_qmake>` with the path to the `qmake` application.)
If this didn't work, make sure you have the correct Qt version
(see above).
### Broken/missing Haskell dependencies
First, try to obtain the missing Haskell packages and make sure GHC
is up-to date, then try again. Read the error messages carefully
to figure out missing package names.
If everything fails and you don't need the server, set the CMake
option `NOSERVER=ON` so the server isn't built at all.
### Error messages related to libavcodec / libavformat
Update Libav or FFmpeg (whatever is present on your system) to
the latest version or install one of them if you haven't already.
Then try to build again.
If this still doesn't work and you give up, set the CMake option
`NOVIDEOREC=ON`, but then the video recording functionality will
not be available.
### Error messages related to Lua, “undefined reference to `lua_tonumber'”, and so on
If you get error messages like these:
* /home/username/hw/hedgewars//uScript.pas:226: undefined reference to `lua_tonumber'
* /home/username/hw/hedgewars/CMakeFiles/hwengine.dir/uScript.o: In function `LUATOVISUALGEARTYPEORD':
There might be something wrong with your Lua installation. Try to install Lua 5.1.
If this doesn't work, or you don't want to install Lua 5.1, try to build Hedgewars
with the bundled Lua version.
To build with the bundled Lua version, adding the CMake option `SYSTEM_LUA=OFF`, then
repeat the building process.
### Cleaning up
In case you want to start over and start with a clean build,
run `make clean`, then go back to step 2.
If things got seriously out of hand, you may want to reset
*everything* (even your configuration). If you use the
Mercural repository, you can run `hg purge --all`. Proceed with
step 1.
### Still can't build Hedgewars?
Visit us in the forums or IRC (see `README.md`) and ask for help.
|