1 |
Douglas Thrift's Renegade Map Selector ReadMe |
2 |
|
3 |
Copyright (C) 2003, Douglas Thrift. All Rights Reserved. |
4 |
|
5 |
OSI Certified Open Source Software |
6 |
|
7 |
Douglas Thrift's Renegade Map Selector Version 1.0 |
8 |
|
9 |
A GUI program to ease map selection and ordering for Westwood Studios' |
10 |
Command & Conquer Renegade Free Dedicated Server. |
11 |
|
12 |
System Requirements |
13 |
|
14 |
Windows NT/2000/XP or Linux with GTK 2.2 (available at |
15 |
http://www.gtk.org/download/). |
16 |
|
17 |
Installation |
18 |
|
19 |
The program should be installed in the Server directory where the Renegade |
20 |
FDS is installed. It should also be run from that directory. The program |
21 |
accepts two command line arguments: -D, to turn on debug output and -file, |
22 |
to specify a different ini file name. |
23 |
|
24 |
Compilation |
25 |
|
26 |
To build the program on Windows you need a C++ compiler such as Microsoft |
27 |
Visual C++. From the Command Prompt, you would type the following command: |
28 |
|
29 |
> nmake |
30 |
|
31 |
To build the program on Linux you need GNU Make and GCC's g++ (these are |
32 |
usually standard on Linux systems). From a terminal, you would type the |
33 |
following command: |
34 |
|
35 |
$ make |
36 |
|
37 |
If you want to specify a different compiler or additional options, you may |
38 |
add variables to the command line. For example if you wanted to use another |
39 |
version of GCC that you installed and wanted your code fully optimized you |
40 |
could type the following command: |
41 |
|
42 |
$ make CPPC=g++31 CPPCOPT=-O3 |