ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/trunk/RenegadeMapSelector/README
Revision: 100
Committed: 2003-03-26T19:06:36-08:00 (22 years, 2 months ago) by douglas
File size: 1289 byte(s)
Log Message:
Wrote stuff in README and added Windows makefile stuff.

File Contents

# Content
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.
21
22 Compilation
23
24 To build the program on Windows you need a C++ compiler such as Microsoft
25 Visual C++. From the Command Prompt, you would type the following command:
26
27 > nmake
28
29 To build the program on Linux you need GNU Make and GCC's g++ (these are
30 usually standard on Linux systems). From a terminal, you would type the
31 following command:
32
33 $ make
34
35 If you want to specify a different compiler or additional options, you may
36 add variables to the command line. For example if you wanted to use another
37 version of GCC that you installed and wanted your code fully optimized you
38 could type the following command:
39
40 $ make CPPC=g++31 CPPCOPT=-O3