Changeset 228 for trunk/cairo/README.rst
- Timestamp:
- 11/03/07 22:54:06 (5 years ago)
- Files:
-
- trunk/cairo/README.rst (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cairo/README.rst
r119 r228 50 50 Use the ``--help`` switch for full usage information. 51 51 52 Also, please note that if you are building static libraries that these 53 libraries only compile for one particular version of cairo at a time. To 54 select which version of the cairo API you want to compile for, you need to use 55 the following additional arguments to the build script: 56 57 * cairo 1.0: no arguments needed. 58 * cairo 1.2: ``+--version=cairo_1_2`` 59 * cairo 1.4: ``+--version=cairo_1_4`` 60 61 You will also need to specify the same version identifier when you compile 62 your programs. 63 52 64 cairooo binding 53 65 --------------- … … 59 71 ``cairooo-build.d`` script, which will build them to the ``lib`` directory. 60 72 Usage is mostly the same as using ``cairo-build.d`` (see above). 73 74 Note that cairooo currently does not support cairo 1.2 or 1.4. 61 75 62 76 cairo snippets … … 159 173 exception which can be caught and dealt with. 160 174 175 To select a particular version of the cairo library, make sure you compile 176 with an appropriate version flag: 177 178 * cairo 1.0: no version flag necessary. 179 * cairo 1.2: --version=cairo_1_2. 180 * cairo 1.4: --version=cairo_1_4. 181 161 182 From there, just start using the cairo API as you would from C. The cairo 162 183 website contains a collection of `example snippets`_ in C, and this binding
