VTK/Eclipse Plugin: Difference between revisions
From KitwarePublic
< VTK
Jump to navigationJump to search
JPouderoux (talk | contribs) (Created page with "This page describe how to create an Eclipse plugin that embeds the VTK library.") |
JPouderoux (talk | contribs) No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
This page describe how to create an Eclipse plugin that embeds the VTK library. | This page describe how to create an Eclipse plugin that embeds the VTK library. | ||
==Step 1. VTK compilation== | |||
Compile VTK with the following options: | |||
VTK_WRAP_JAVA:ON | |||
BUILD_SHARED_LIBRARIES:ON | |||
BUILD_TESTING:ON | |||
==Step 2. Eclipse plugin== | |||
==Step 2. Plugin fragments== | |||
Platform Filter: | |||
An osgi filter string like those one: | |||
(&(osgi.os=win32)(osgi.arch=x86_64)) | |||
or | |||
(&(osgi.os=linux)(osgi.arch=x86_64)) | |||
Host Plug-in: The main Eclipse plugin |
Latest revision as of 16:23, 7 January 2013
This page describe how to create an Eclipse plugin that embeds the VTK library.
Step 1. VTK compilation
Compile VTK with the following options:
VTK_WRAP_JAVA:ON BUILD_SHARED_LIBRARIES:ON BUILD_TESTING:ON
Step 2. Eclipse plugin
Step 2. Plugin fragments
Platform Filter:
An osgi filter string like those one:
(&(osgi.os=win32)(osgi.arch=x86_64))
or
(&(osgi.os=linux)(osgi.arch=x86_64))
Host Plug-in: The main Eclipse plugin