Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "ERCP/build/HowToBuildeSWTforQt"

(New page: 1. Environment setup * Java SE 5 SDK for Linux install : apt-get install sun-java5-jdk * Qt for Linux install : apt-get install libqt4-dev * Ant install :...)
 
Line 1: Line 1:
  1.  Environment setup
+
#Environment setup
          * Java SE 5 SDK for Linux install : apt-get install sun-java5-jdk
+
##Java SE 5 SDK for Linux install: <code>apt-get install sun-java5-jdk</code>, <code>emerge =dev-java/sun-jdk-1.5*</code>
          * Qt for Linux install : apt-get install libqt4-dev
+
##Qt for Linux install: <code>apt-get install libqt4-dev</code>, <code>emerge qt-webkit</code>
          * Ant install : apt-get install ant  
+
##Ant install : <code>apt-get install ant</code>, <code>emerge dev-java/ant</code>
  2. Environment variables
+
#Environment variables
          * export JAVA_HOME=/usr/lib/jvm/java-1.5.0-sun
+
##<code>export JAVA_HOME=/usr/lib/jvm/java-1.5.0-sun</code>
  3. eSWT compilation
+
#eSWT compilation
          * cd org.eclipse.ercp.swt.qt.linux.x86
+
##<code>cd org.eclipse.ercp.swt.qt.linux.x86</code>
          * ant build
+
##<code>ant build</code>

Revision as of 20:02, 30 September 2009

  1. Environment setup
    1. Java SE 5 SDK for Linux install: apt-get install sun-java5-jdk, emerge =dev-java/sun-jdk-1.5*
    2. Qt for Linux install: apt-get install libqt4-dev, emerge qt-webkit
    3. Ant install : apt-get install ant, emerge dev-java/ant
  2. Environment variables
    1. export JAVA_HOME=/usr/lib/jvm/java-1.5.0-sun
  3. eSWT compilation
    1. cd org.eclipse.ercp.swt.qt.linux.x86
    2. ant build

Back to the top