About/News |
Linux GTK+ Build InstructionsIntroductionIn this document I'll use Install your .NET Package(s)There are two open source .NET runtimes and development environments available:
Mono is recommended on Linux. It is probably easiest to install a Mono RPM for your Linux distribution. Acquire wxWidgets SourceAs of this writing, wx.NET requires version 2.6.x of wxWidgets. There are a variety of ways you can build and install wxWidgets. Downloading the 2.6.x ReleaseDownload this release from: Untar the file Download a Nightly CVS SnapshotIf you know of a bug that is resolved in CVS, using a snapshot of CVS is probably the easiest approach to take. The source tarball is available at: Using the Latest CVS HEADIf you want the latest and greatest development version of wxWidgets, use the latest unreleased "CVS HEAD" version. This just means the latest developer version. Standard checkout command: $ cvs -d :pserver:anoncvs@cvs.wxwidgets.org:/pack/cvsroots/wxwindows \ co wxWidgets Use the password "anoncvs". Configure the BuildInside of the You must change:
And you should probably review:
The default for Build Wx.WidgetsInside of a shell do the following: $ cd WXNET_TOP/Build/Linux
$ make wxw
This will:
The wxw build is actually broken into steps. To see a list of sub-builds you can perform, you can type make without any arguments: $ make You can find the list of commands here. The wxw target does not build the wxWidgets samples. If this is your first time using wxWidgets/wx.NET, I suggest building these as well: $ make wxw-samples Please see the samples section for details about the wxWidgets samples. Build wx.NETInside of a shell do the following: $ cd WXNET_TOP/Build/Linux
$ make wxnet
This will:
Upon successful build libraries and assemblies are all placed in a common "bin" folder, You can also "install" wx.NET to another directory on your
Linux box. This is a great way to archive different builds of wx.NET
or test on another host. The install will be done to the directory defined
by To start the install type: $ make wxnet-install See Install Package for a description of what gets installed. And note that the install step is optional. You do not have to do it to run the samples or even develop using wx.NET. Try Out the SamplesRun the You can also launch samples
directly via the $ cd WXNET_TOP/Bin $ ./wxnet-run sample.exe Please review the Samples section for a list of any outstanding bugs or issues. Last changed on $Date: 2005/07/25 05:15:16 $ by $Author: t9mike $ • Original Author: Michael S. Muegel |