Difference between revisions of "Selector UI"
(New page: {{#eclipseproject:technology.higgins|eclipse_custom_style.css}} right ==Introduction== ... ==End-User Perspective == ... ==Deployer Perspective== ...) |
(→GTK, C++ projects) |
||
Line 45: | Line 45: | ||
You also need the following software: | You also need the following software: | ||
* '''cmake''' - http://www.cmake.org/ | * '''cmake''' - http://www.cmake.org/ | ||
− | * '''OpenSSL | + | * '''Microsoft Visual C++ 2008 Redistributable Package''' - http://www.microsoft.com/downloads/details.aspx?familyid=9B2DA534-3E03-4391-8A4D-074B9F2BC1BF&displaylang=en |
+ | * '''OpenSSL''' (Full version, not Light version) - http://www.slproweb.com/products/Win32OpenSSL.html | ||
* '''Glade2+GTK''' - http://gladewin32.sourceforge.net/ | * '''Glade2+GTK''' - http://gladewin32.sourceforge.net/ | ||
− | 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 | + | 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 will need to check both scripts and adjust local paths before you can run them. Also, you may have to change the line | ||
+ | |||
+ | <pre> | ||
+ | cmake -G "Visual Studio 8 2005" ../.. | ||
+ | </pre> | ||
+ | |||
+ | ... to ... | ||
+ | |||
+ | <pre> | ||
+ | cmake -G "Visual Studio 9 2008" ../.. | ||
+ | </pre> | ||
+ | |||
+ | ... depending on which version of MS Visual C++ you are using. | ||
[[Category:Higgins Solutions]] | [[Category:Higgins Solutions]] | ||
[[Category:Higgins Packages]] | [[Category:Higgins Packages]] |
Revision as of 05:23, 30 July 2009
{{#eclipseproject:technology.higgins|eclipse_custom_style.css}}
Contents
Introduction
...
End-User Perspective
...
Deployer Perspective
...
Developer Perspective
Architecture
...
Components & Services
...
Building
GTK, C++ projects
The projects are:
- 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:
These projects can be built with MS Visual C++. You can check them out from the Eclipse repository using an SVN plugin like http://ankhsvn.open.collab.net/, or by using an external SVN tool such as http://tortoisesvn.tigris.org/.
You also need the following software:
- cmake - http://www.cmake.org/
- Microsoft Visual C++ 2008 Redistributable Package - http://www.microsoft.com/downloads/details.aspx?familyid=9B2DA534-3E03-4391-8A4D-074B9F2BC1BF&displaylang=en
- OpenSSL (Full version, not Light version) - http://www.slproweb.com/products/Win32OpenSSL.html
- Glade2+GTK - http://gladewin32.sourceforge.net/
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 will need to check both scripts and adjust local paths before you can run them. Also, you may 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.