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 "Selector UI"

(Building with MS Visual C++)
(GTK, C++ projects)
Line 28: Line 28:
 
====GTK, C++ projects====
 
====GTK, C++ projects====
  
The projects are:
+
The required project is:
 
* app/org.eclipse.higgins.selector.ui.gtk  
 
* app/org.eclipse.higgins.selector.ui.gtk  
* app/org.eclipse.higgins.selector.ui.gtk.core
 
  
These projects can be checked out from the Eclipse repository at the following SVN URIs:
+
This projects can be checked out from the Eclipse repository at the following SVN URI:
  
 
{| class="wikitable" style="text-align:left; border="1" cellpadding="5" cellspacing="0"   
 
{| class="wikitable" style="text-align:left; border="1" cellpadding="5" cellspacing="0"   
 
|-
 
|-
 
| https://dev.eclipse.org/svnroot/technology/org.eclipse.higgins/trunk/app/org.eclipse.higgins.selector.ui.gtk
 
| https://dev.eclipse.org/svnroot/technology/org.eclipse.higgins/trunk/app/org.eclipse.higgins.selector.ui.gtk
| https://dev.eclipse.org/svnroot/technology/org.eclipse.higgins/trunk/app/org.eclipse.higgins.selector.ui.gtk.core
 
 
|-
 
|-
 
|}
 
|}
  
You can check them out from the Eclipse repository using a MS Visual C++ plugin like [[AnkhSVN|http://ankhsvn.open.collab.net/]], or by using an external SVN tool such as [[TortoiseSVN|http://tortoisesvn.tigris.org/]].
+
You can check it out from the Eclipse repository using a MS Visual C++ plugin like [[AnkhSVN|http://ankhsvn.open.collab.net/]], or by using an external SVN tool such as [[TortoiseSVN|http://tortoisesvn.tigris.org/]].
 +
 
 +
To avoid problems, you should check it out into a directory that does not contain any spaces, e.g. '''C:\Higgins\org.eclipse.higgins.selector.ui.gtk'''.
  
 
=====Building with MS Visual C++ 2008 on Windows=====
 
=====Building with MS Visual C++ 2008 on Windows=====

Revision as of 05:54, 30 July 2009

{{#eclipseproject:technology.higgins|eclipse_custom_style.css}}

Higgins logo 76Wx100H.jpg

Introduction

...

End-User Perspective

...

Deployer Perspective

...

Developer Perspective

Architecture

...

Components & Services

...

Building

GTK, C++ projects

The required project is:

  • app/org.eclipse.higgins.selector.ui.gtk

This projects can be checked out from the Eclipse repository at the following SVN URI:

https://dev.eclipse.org/svnroot/technology/org.eclipse.higgins/trunk/app/org.eclipse.higgins.selector.ui.gtk

You can check it out from the Eclipse repository using a MS Visual C++ plugin like http://ankhsvn.open.collab.net/, or by using an external SVN tool such as http://tortoisesvn.tigris.org/.

To avoid problems, you should check it out into a directory that does not contain any spaces, e.g. C:\Higgins\org.eclipse.higgins.selector.ui.gtk.

Building with MS Visual C++ 2008 on Windows

You need the following software:

To avoid problems, you should install the above software in their default locations (e.g. C:\OpenSSL and C:\Gtk).

The projects are designed to be built with cmake, and in order to be able to import them into MS Visual C++, the necessary project files have to be created using the special scripts configure_vs.bat and setupvc.bat, which are included with the selector.ui.gtk project. You may have to edit both scripts and adjust local paths before you can run them. Also, you have to change the line

cmake -G "Visual Studio 8 2005" ../..

... to ...

cmake -G "Visual Studio 9 2008" ../..

... depending on which version of MS Visual C++ you are using.

Back to the top