~ubuntu-branches/ubuntu/warty/aqsis/warty

« back to all changes in this revision

Viewing changes to INSTALL

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2004-08-24 07:25:04 UTC
  • Revision ID: james.westby@ubuntu.com-20040824072504-zf993vnevvisdsvb
Tags: upstream-0.9.1
ImportĀ upstreamĀ versionĀ 0.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Aqsis Rendering System INSTALL - Posix systems
 
2
-----------------------------------------------
 
3
 
 
4
* Generated files (e.g. configure, Makefile.in) are not stored in CVS; if you
 
5
are building from a CVS tree, you need to generate these files from the 
 
6
top-level directory:
 
7
 
 
8
        ./bootstrap
 
9
 
 
10
* Now (regardless of where how you obtained the source), you need to configure
 
11
it for your system.  Note that currently shared libraries are turned-off by 
 
12
default, and the default install prefix is "/usr/local/aqsis". You can obtain a
 
13
listing of available configuration options by doing:
 
14
 
 
15
        ./configure --help
 
16
 
 
17
* Once you've decided which (if any) configuration options you want to override,
 
18
you can run the configure script:
 
19
 
 
20
        ./configure <options>
 
21
 
 
22
* Assuming there were no errors, you may now build the project:
 
23
 
 
24
        make
 
25
 
 
26
* Now, run the built-in tests, which will render a sample image of a vase and
 
27
teapot (ribfiles/vase.rib):
 
28
 
 
29
        make check
 
30
 
 
31
* You're now ready to install the Aqsis binaries for general use on your host.
 
32
You will have to have root access:
 
33
 
 
34
        su -c "make install"
 
35
 
 
36
* If you want to make a copy of the Aqsis source available for others, you can
 
37
roll your own distribution tarball:
 
38
 
 
39
        make distcheck
 
40
 
 
41
* Contact the Aqsis mailing list, <aqsis-development@lists.sourceforge.net> 
 
42
with any questions.
 
43
 
 
44
 
 
45
 
 
46
 
 
47
 
 
48
Aqsis Rendering System INSTALL - Windows binary installation
 
49
------------------------------------------------------------
 
50
 
 
51
Simply download and run the executable installer.
 
52
 
 
53
 
 
54
 
 
55
 
 
56
 
 
57
Aqsis Rendering System INSTALL - Compiling under Windows (From CVS)
 
58
-------------------------------------------------------------------
 
59
 
 
60
Requirements:
 
61
        
 
62
        CVS Projects:
 
63
                renderer
 
64
                win32libs
 
65
 
 
66
        Tools:
 
67
 
 
68
                MSVC++ 6.0
 
69
                bison           1.35-4 (http://sourceforge.net/projects/gnuwin32/)
 
70
                                        Included in the win32libs project
 
71
                flex            2.5.4a (http://sourceforge.net/projects/gnuwin32/)
 
72
                                        Included in the win32libs project
 
73
 
 
74
 
 
75
        Libraries:
 
76
 
 
77
                libtiff         3.5.7 (http://sourceforge.net/projects/gnuwin32/)
 
78
                                        Included in the win32libs project
 
79
                libjpeg         6b (http://sourceforge.net/projects/gnuwin32/)
 
80
                                        Included in the win32libs project
 
81
                zlib            1.1.4 (http://sourceforge.net/projects/gnuwin32/)
 
82
                                        Included in the win32libs project
 
83
 
 
84
        Load the Renderer.dsw workspace from the Aqsis/Renderer directory, select 
 
85
        the "All - Release" project and build all.
 
86
 
 
87
 
 
88
 
 
89
Happy Rendering!
 
90
The Aqsis Team