Difference between revisions of "Mono Integration"

From Apache OpenOffice Wiki
Jump to: navigation, search
(migrate)
 
(Build sample programs)
Line 12: Line 12:
 
     cd odk/examples/CLI/CSharp/Spreadsheet
 
     cd odk/examples/CLI/CSharp/Spreadsheet
 
     mcs SpreadsheetSample.cs SpreadsheetDocHelper.cs \
 
     mcs SpreadsheetSample.cs SpreadsheetDocHelper.cs \
       -r ../../../../../cli_ure/unxlngi4.pro/bin/cli_basetypes.dll \
+
       -r ../../../../../cli_ure/unxlngi6.pro/bin/cli_basetypes.dll \
       -r ../../../../../cli_ure/unxlngi4.pro/bin/cli_types.dll \  
+
       -r ../../../../../cli_ure/unxlngi6.pro/bin/cli_types.dll \  
       -r ../../../../../cli_ure/unxlngi4.pro/bin/cli_cppuhelper.dll \
+
       -r ../../../../../cli_ure/unxlngi6.pro/bin/cli_cppuhelper.dll \
       -r ../../../../../cli_ure/unxlngi4.pro/bin/cli_ure.dll
+
       -r ../../../../../cli_ure/unxlngi6.pro/bin/cli_ure.dll
 
     cp SpreadsheetSample.exe /opt/OOInstall/program
 
     cp SpreadsheetSample.exe /opt/OOInstall/program
 
     cd /opt/OOInstall/program
 
     cd /opt/OOInstall/program

Revision as of 12:51, 24 February 2006

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/unxlngi6.pro/bin/cli_basetypes.dll \
     -r ../../../../../cli_ure/unxlngi6.pro/bin/cli_types.dll \ 
     -r ../../../../../cli_ure/unxlngi6.pro/bin/cli_cppuhelper.dll \
     -r ../../../../../cli_ure/unxlngi6.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