~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/mono-addins/README

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
Mono.Addins is a generic framework for creating extensible applications,
 
3
and for creating libraries which extend those applications.
 
4
 
 
5
For for information about the library, see:
 
6
http://www.mono-project.com/Mono.Addins
 
7
 
 
8
Building
 
9
--------
 
10
 
 
11
To build the library execute:
 
12
 
 
13
        ./configure
 
14
        make
 
15
 
 
16
Options:
 
17
 
 
18
--prefix=/path/to/prefix
 
19
 
 
20
        Install to the specified prefix
 
21
 
 
22
--enable-gui
 
23
 
 
24
        Include GUI support (requires gtk#)
 
25
 
 
26
--enable-tests
 
27
 
 
28
        Include NUnit tests (requires nunit)
 
29
 
 
30
 
 
31
Building the samples
 
32
--------------------
 
33
 
 
34
cd to the Samples directory and run make.
 
35
 
 
36
Running the NUnit tests
 
37
-----------------------
 
38
 
 
39
To run the NUnit tests, you need to configure the build with --enable-tests,
 
40
cd to Tests, and run 'make test'. 
 
41