From 2f47a139efefa98a8e0afdd0fed2dd6e91b407d3 Mon Sep 17 00:00:00 2001 From: James Turk Date: Tue, 15 Nov 2005 05:48:31 +0000 Subject: [PATCH] .txt->.html --- INSTALL.html | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++ INSTALL.txt | 31 ------------------------------ 2 files changed, 54 insertions(+), 31 deletions(-) create mode 100644 INSTALL.html delete mode 100644 INSTALL.txt diff --git a/INSTALL.html b/INSTALL.html new file mode 100644 index 0000000..d19794e --- /dev/null +++ b/INSTALL.html @@ -0,0 +1,54 @@ + + + +Photon iFAQ (inFrequently Asked Questions) + + + + + + +

There are several ways to build photon:

+ + +

Building with SCons

+
    +
  1. Enter the photon directory. +
  2. Type 'scons' - building should begin assuming all dependencies are found. + this will result in the photon library being built in the lib/ folder.
  3. +
  4. Optional: Type 'scons test' to build test programs, test programs will be + built in the test/ folder.
  5. +
  6. Optional: Type 'scons docs' to build documentation in the docs/ folder. + [requires NaturalDocs]
  7. +
  8. Copy the photon library from the lib/ folder and the contents of photon's + include/ directory to somewhere in your compilers search path.
  9. +
+ +

Building with Code::Blocks

+
    +
  1. Open the photon.workspace file in Code::Blocks
  2. +
  3. Build the library by compiling the project named photon.
  4. +
  5. Optional: Build any tests by running the other projects.
  6. +
  7. Copy the photon library from the lib/ folder and the contents of photon's + include/ directory to somewhere in your compilers search path.
  8. +
+ +

Building with Dev-C++

+
    +
  1. Run the photon.dev project in the devcpp directory, building libphoton.a
  2. +
  3. Optional: Build any tests by running the other projects in the devcpp + directory.
  4. +
  5. Copy the photon library from the lib/ folder and the contents of photon's + include/ directory to somewhere in your compilers search path.
  6. +
+ +

$Id: INSTALL.html,v 1.1 2005/11/15 05:48:31 cozman Exp $

+ + + + + diff --git a/INSTALL.txt b/INSTALL.txt deleted file mode 100644 index 5073150..0000000 --- a/INSTALL.txt +++ /dev/null @@ -1,31 +0,0 @@ -There are several ways to build photon: - - SCons Build Tool http://www.scons.org - - Dev-C++ 5 Windows IDE http://www.bloodshed.net/devcpp.html - - Code::Blocks Windows/Linux IDE http://codeblocks.org - -Building with SCons - 1) Enter the photon directory. - 2) Type 'scons' - building should begin assuming all dependencies are found. - this will result in the photon library being built in the lib/ folder. - 3) Optional: Type 'scons test' to build test programs, test programs will be - built in the test/ folder. - 4) Optional: Type 'scons docs' to build documentation in the docs/ folder. - [requires NaturalDocs (http://naturaldocs.org)] - 5) Copy the photon library from the lib/ folder and the contents of photon's - include/ directory to somewhere in your compilers search path. - -Building with Dev-C++ - 1) Run the photon.dev project in the devcpp directory, building libphoton.a - 2) Optional: Build any tests by running the other projects in the devcpp - directory. - 3) Copy the photon library from the lib/ folder and the contents of photon's - include/ directory to somewhere in your compilers search path. - -Building with Code::Blocks - 1) Open the photon.workspace file in Code::Blocks - 2) Build the library by compiling the project named photon. - 3) Optional: Build any tests by running the other projects. - 4) Copy the photon library from the lib/ folder and the contents of photon's - include/ directory to somewhere in your compilers search path. - -$Id: INSTALL.txt,v 1.2 2005/08/10 05:37:57 cozman Exp $