- Aug 09, 2015
-
-
Utkarsh Ayachit authored
When building with MPI and testing is disabled (which happens when building on supercomputers), VTK fails to build because of missing MPIEXEC. That's wrong. MPIEXEC is only needed if testing is enabled. Fixed the error message accordingly.
-
- Aug 06, 2015
-
-
T.J. Corona authored
This fix addresses bug reports 0014698 and 0014700. Header files that were named identically to source files were installed. The added flag allows for a source file to be flagged with SKIP_HEADER_INSTALL, which prevents its associated header file from being installed (thanks Ben Boeckel!).
-
Toolchains tend to add new warnings as time goes on, so in the spirit of keeping VTK as future-proof as possible, don't turn them into warnings by default. Testing machines and developers can certainly enable it though. http://public.kitware.com/pipermail/vtk-developers/2015-July/032233.html
-
- Jul 18, 2015
-
-
Utkarsh Ayachit authored
When attemping to add tests using vtk_add_test_python_mpi(), issues were spotted in the vtkTestingMacros code. This commit addresses those issues. VTK_PYTHON_EXE is no longer globally defined in CMakeLists.txt. vtk_add_test_python_mpi() and vtk_add_test_python() assume a good default is none is set (this allows for applications like ParaView to use these macros while overriding the executable to run). We use generator expressions to point to the default vtkpython/pvtkpython executables which works better when MPI (mpiexec/mpirun) is being used to launch the test executable.
-
Utkarsh Ayachit authored
Also fixed vtkTestingMacros to properly locate vtkpython executable when adding MPI tests.
-
- Jul 15, 2015
-
-
Bill Lorensen authored
A preliminary implementation of Remote modules. This approach follows the ITK implementation. Three remote modules are included for testing David Doria's Poissoin Reconstruction, David Gobbi's vtkDICOM and Slicer's vtkAddon. To configure vtk with these remote modules: cmake -DvtkAddon:BOOL=ON -DModule_PoissonReconstruction:BOOL=ON -DModule_vtkDICOM:BOOL=ON vtk_source_dir make
-
- Jul 13, 2015
-
-
Ben Boeckel authored
Required for ParaView.
-
- Jul 12, 2015
-
-
Ken Martin authored
-
- Jul 02, 2015
-
-
Mathieu Westphal (Kitware) authored
-
- Jun 16, 2015
-
-
Dan Lipsa authored
-
- May 29, 2015
-
-
Sujin Philip authored
Added quotes around ${POLICY_VAR} to avoid cmake syntax error in "if" when it is empty.
-
- May 28, 2015
-
-
Ken Martin authored
-
- May 27, 2015
-
-
Ken Martin authored
-
- May 26, 2015
-
-
Arnaud Gelas authored
-
- May 21, 2015
-
-
Sujin Philip authored
Added Improved FindOpenMP module that also detects the OpenMP version (specification date) supported by the compilers.
-
- May 14, 2015
-
-
Ben Boeckel authored
Also fix regex madness and a typo.
-
Ben Boeckel authored
-
- May 13, 2015
-
-
Ben Boeckel authored
Some external libraries must be at least some version to work from outside the source tree.
-
Ben Boeckel authored
-
- May 08, 2015
-
-
Ben Boeckel authored
This helps `ctest -jN` do a bit better.
-
- May 05, 2015
-
-
Sujin Philip authored
FindTBB now chooses libc++ based binary libraries by default on Mavericks and above + AppleClang.
-
- Apr 29, 2015
-
-
Bill Hoffman authored
If you find each qt5 component directly, you have to specifiy the path to Qt5 config files for each component. If you use find_package(Qt5 COMPONENT component), then you can specify one Qt5 config directory and all the components will be found.
-
- Mar 31, 2015
-
-
Sujin Philip authored
-
- Mar 17, 2015
-
-
Robert Maynard authored
The new implementation of FindTBB is a better approach to search for tbb on all platforms, and better obeys the CMake Find Module guidelines.
-
- Mar 16, 2015
-
-
Brad King authored
In SetupForDevelopment, switch from setup-gerrit to setup-gitlab. Also invoke setup-upstream to switch the "origin" remote to GitLab. Update the version of the SetupForDevelopment script so that existing work tree hooks will ask developers to run the script again.
-
- Mar 05, 2015
-
-
Chuck Atkins authored
ADIOS has added 2 new pieces of metadata in the read API to retrieve the absolute file timestep and writing process rank for each block of data. This removes the need to compute the block index. Change-Id: I02b14706225f0a21d3ae6b11060a21748ccba199
-
- Feb 26, 2015
-
-
Brad King authored
Change-Id: Id6dc7c1b665191804641b3796d5ed7728d3c2257
-
Brad King authored
Allow URL templates to contain a %(algo:<key>) placeholder that is replaced by mapping the canonical hash algorithm name through a map defined by the <key>. Extend the Module.ExternalData test to cover the behavior. Extend the RunCMake.ExternalData test to cover error cases. Change-Id: Iabbcb81de0253b4482bce65a0e32cc5c1e8a4816
-
Brad King authored
Add support for a special URL template to map the fetch operation to a project-specified .cmake script insead of using file(DOWNLOAD). Extend the Module.ExternalData test to cover the behavior. Extend the RunCMake.ExternalData test to cover error cases. Change-Id: Ia115f2bbe4c7229945269b1311bb2c8aaca01643
-
The matches have already been calculated and can simply be taken from CMAKE_MATCH_n variables. This avoids multiple compilations of the same or very similar regular expressions. Change-Id: Ie9d66cc5790475307eaea1c8c934ed16b28ae5f2
-
Brad King authored
Allow ExternalData_URL_TEMPLATES to be empty if a value for ExternalData_OBJECT_STORES is provided. Assume in this use case that the object stores will already contain all needed objects. Extend the Module.ExternalData test to cover this case (all objects in stores). Extend the RunCMake.ExternalData test to cover the non-failure message case when stores are provided without URL templates. Change-Id: I7db401d51f4a4a68b07c181efde5cfe534a13ec8
-
Change-Id: I742f9a3451d93727f87b3d59691dff58ab43451a
-
- Feb 11, 2015
-
-
Dave DeMarle authored
Change-Id: I618606e72fe6b65dfbeb265d5835270f85ad2711
-
Ben Boeckel authored
The problem is that when the package is found via a directory with a symlink which points into the install prefix, we should use the configured install prefix. Example: /usr (install prefix) /usr/lib/cmake/vtk-6.2 (configuration's path) /lib -> /usr/lib (UsrMove) /lib/cmake/vtk-6.2 (path VTK was found by) The problem here is that when we traverse up the 3 components to try and find '/usr', we end up finding '/' instead. To fix this, we detect this by resolving the found path and the expected path to remove all symlinks. If these are the same, use the configured path, otherwise go up the tree the correct number of components. Still unsupported is finding VTK by a path with a symlink into the prefix and VTK has been relocated since being installed. Fixes #15065. Change-Id: I181a126382941eb7e33304d426719abd5769048b
-
- Feb 10, 2015
-
-
Jean-Christophe Fillion-Robin authored
find_package(VTK 6) has an implied .0 which is counterintuitive and find_package(VTK 6.0 REQUIRED) won't accept vtk 6.1, 6.2 etc. This change makes the minor version at least more lenient. Change-Id: Ic435f1dc78f47682baefc62da927b4f04ea78ff0
-
- Feb 07, 2015
-
-
Dave DeMarle authored
With external vtklocal we ended up trying to link againt "TCL". Change-Id: If154b92a164e6a6a21274614fbc4c652023fec2d
-
- Feb 06, 2015
-
-
Tim Thirion authored
Change-Id: I7e1bf7f4f26c3d47056b3feeeea7a655e400a63a
-
- Feb 05, 2015
-
-
Tim Thirion authored
Change-Id: Ic79f2b2cbf53403dc4a300f7f915a599230f384c
-
- Feb 03, 2015
-
-
Ben Boeckel authored
Fetched from Gentoo and Fedora. Change-Id: I81914db86ed527f1345962eb72fe7ca9113a5be1
-
Ken Martin authored
Change-Id: I298916e3015017633041f0fc8c4db2aadbfb0f2f
-