Difference between revisions of "Mono Integration"

From Apache OpenOffice Wiki
Jump to: navigation, search
(migrate)
(No difference)

Revision as of 21:02, 14 November 2005

Notice

This functionality is available only in patches associated with ooo-build/

Building

To build this, grab a recent mono - 1.1.8.3 is likely to work. Then Build with --enable-mono. Install in the normal way.

Build sample programs

   cd odk/examples/CLI/CSharp/Spreadsheet
   mcs SpreadsheetSample.cs SpreadsheetDocHelper.cs \
     -r ../../../../../cli_ure/unxlngi4.pro/bin/cli_basetypes.dll \
     -r ../../../../../cli_ure/unxlngi4.pro/bin/cli_types.dll \ 
     -r ../../../../../cli_ure/unxlngi4.pro/bin/cli_cppuhelper.dll \
     -r ../../../../../cli_ure/unxlngi4.pro/bin/cli_ure.dll
   cp SpreadsheetSample.exe /opt/OOInstall/program
   cd /opt/OOInstall/program
   mono ./SpreadsheetSample.exe

You should get a nicely auto-generated spreadsheet.

With a binary installation

You need to grab the files above from: lxr and whack them in /usr/lib/ooo-2.0/program slightly differently:

   cd /usr/lib/ooo-2.0/program
   mcs SpreadsheetSample.cs SpreadsheetDocHelper.cs \
     -r cli_basetypes.dll -r cli_types.dll \
     -r cli_cppuhelper.dll -r cli_ure.dll
   mono ./SpreadsheetSample.exe
Personal tools