Catalyst Build: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(Blanked the page)
 
(35 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Generating Catalyst Source Tree ==
The Catalyst source tree is generated from ParaView using a Python script located in the ParaView source tree ([http://http://paraview.org/gitweb?p=ParaView.git;a=blob;f=Catayst/catalyze.py] Catalyst/catalyze.py). The script takes a JSON manifest file (manifest.json) that describes what files are copied and transform from ParaView to produce the Catalyst source tree. For example the following segment of JSON indicates that the VTK module vtkCommonMath should be included (excluding the Testing directory) and it should be Python wrapped:


<source lang="json">
    {
      "name":"vtkCommonMath",
      "path":"VTK/Common/Math",
      "exclude":[
        {
          "path":"Testing"
        }
      ],
      "pythonwrap":true
    }
</source>
== Build Directions ==

Latest revision as of 18:48, 8 November 2012