Difference between revisions of "Mono Integration"

From Apache OpenOffice Wiki
Jump to: navigation, search
(Build sample programs)
(Cleanup mcs commandline.)
Line 11: Line 11:
  
 
     cd odk/examples/CLI/CSharp/Spreadsheet
 
     cd odk/examples/CLI/CSharp/Spreadsheet
     mcs SpreadsheetSample.cs SpreadsheetDocHelper.cs \
+
     export CLI_URE=../../../../../cli_ure/unxlngi6.pro/bin
      -r ../../../../../cli_ure/unxlngi6.pro/bin/cli_basetypes.dll \
+
    mcs SpreadsheetSample.cs SpreadsheetDocHelper.cs -r:$CLI_URE/cli_basetypes.dll \
       -r ../../../../../cli_ure/unxlngi6.pro/bin/cli_types.dll \
+
       -r:$CLI_URE/cli_types.dll -r:$CLI_URE/cli_cppuhelper.dll -r:$CLI_URE/cli_ure.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
 
     cp SpreadsheetSample.exe /opt/OOInstall/program
 
     cd /opt/OOInstall/program
 
     cd /opt/OOInstall/program

Revision as of 12:55, 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
   export CLI_URE=../../../../../cli_ure/unxlngi6.pro/bin
   mcs SpreadsheetSample.cs SpreadsheetDocHelper.cs -r:$CLI_URE/cli_basetypes.dll \
     -r:$CLI_URE/cli_types.dll -r:$CLI_URE/cli_cppuhelper.dll -r:$CLI_URE/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