[Smtk-developers] (no subject)

Maxim Torgonskiy kriolog at gmail.com
Tue May 30 12:35:34 EDT 2017


Hi Ben,

I've created a docker image (debian stretch) for the cmb compilation
to be sure that the build is clean and the error is reproducible.
Could you please take a look at it?
The config is the following:

====================================
#Dockerfile
FROM debian:stretch
MAINTAINER Maxim Torgonskiy <maxim.torgonskiy at caboma.com>

RUN export DEBIAN_FRONTEND=noninteractive

# Add user jenkins to the image
RUN useradd -m -d /home/jenkins -s /bin/sh jenkins
# Set password for the jenkins user (you may want to alter this).
RUN echo "jenkins:jenkins" | chpasswd

# Make sure the package repository is up to date.
RUN apt-get update
RUN apt-get -y upgrade

# Install development tools (gcc, make, etc.)
RUN apt-get install -y build-essential

# Install SSH server
RUN apt-get install -y openssh-server
RUN sed -i 's|session    required     pam_loginuid.so|session
optional     pam_loginuid.so|g' /etc/pam.d/sshd
RUN mkdir -p /var/run/sshd

# Install JDK 8
RUN apt-get install -y openjdk-8-jdk

# Install Git
RUN apt-get install -y git

# Install dependencies
RUN apt-get install -y build-essential
RUN apt-get install -y m4
RUN apt-get install -y git
RUN apt-get install -y cmake
RUN apt-get install -y qt4-qmake libqt4-dev qt4-dev-tools
RUN apt-get install -y libxt-dev
RUN apt-get install -y gfortran

# Standard SSH port
EXPOSE 22

CMD ["/usr/sbin/sshd", "-D"]
====================================

I build the project (https://gitlab.kitware.com/cmb/cmb-superbuild.git
, branch master) with the following arguments:

====================================
-DBUILD_SHARED_LIBS:BOOL=ON
-DBUILD_TESTING:BOOL=OFF
-DENABLE_cmb:BOOL=OFF
-DENABLE_smtk:BOOL=ON
-DENABLE_moab:BOOL=ON
-DENABLE_cgm:BOOL=ON
-DENABLE_oce:BOOL=ON
-DENABLE_qt4:BOOL=ON
-DENABLE_qt5:BOOL=OFF
-DUSE_SYSTEM_qt4:BOOL=ON
-DUSE_SYSTEM_qt5:BOOL=OFF
====================================

The error is the same:

====================================
[ 98%] Performing configure step for 'smtk'
...
-- Found MOAB: /home/jenkins/workspace/CMBDockerLinux/cmb_superbuild_build/install/include
CMake Error at /home/jenkins/workspace/CMBDockerLinux/cmb_superbuild_build/install/lib/cmake/MOAB/MOABConfig.cmake:45
(include):
  include could not find load file:

    /home/jenkins/workspace/CMBDockerLinux/cmb_superbuild_build/install/lib/cmake/MOAB/MOABTargets.cmake
Call Stack (most recent call first):
  CMake/FindMOAB.cmake:55 (include)
  CMakeLists.txt:241 (find_package)


CMake Error at CMake/FindMOAB.cmake:56 (include):
  include could not find load file:

    /home/jenkins/workspace/CMBDockerLinux/cmb_superbuild_build/install/lib/cmake/MOAB/MOABTargets.cmake
Call Stack (most recent call first):
  CMakeLists.txt:241 (find_package)


CMake Error at CMake/FindMOAB.cmake:70 (set_target_properties):
  set_target_properties Can not find target to add properties to: MOAB
Call Stack (most recent call first):
  CMakeLists.txt:241 (find_package)
====================================

The full build log is here:
https://gist.githubusercontent.com/kriolog/80021835822ffc519f009b15cb9ecf70/raw/ec5753d5976abcec6e71fecdea50af6bda0e552f/cmb-superbuild_build_log

Thanks,
Maxim

2017-05-18 16:45 GMT-04:00 Maxim Torgonskiy <kriolog at gmail.com>:
> Today I've successfully built smtk with the following options:
> ccmake \
> -DBoost_INCLUDE_DIR:PATH=/usr/include \
> -DBOOST_LIBRARYDIR:PATH=/usr/lib/x86_64-linux-gnu \
> -DSMTK_ENABLE_PARAVIEW_SUPPORT:BOOL=ON \
> -DParaView_DIR:PATH=path/to/ParaView-v5.3.0/build \
> -DSMTK_ENABLE_QT_SUPPORT:BOOL=ON \
> -DSMTK_QT_VERSION:STRING=5 \
> -DSMTK_IGNORE_MOAB_WARNINGS:BOOL=OFF\
> /path/to/src
>
> 2017-05-16 17:26 GMT-04:00 Maxim Torgonskiy <kriolog at gmail.com>:
>> Thanks Ben,
>>
>> Here is the output for the cmb-superbuild. I'll also try to build
>> standalone smtk.
>>
>> ➜  tree cmb-superbuild_build/install/lib/cmake/
>> cmb-superbuild_build/install/lib/cmake/
>> ├── CGM
>> │   ├── CGMConfig.cmake
>> │   ├── CGMTargets.cmake
>> │   ├── CGMTargets-release.cmake
>> │   └── FindCUBIT.cmake
>> ├── FTGL
>> │   ├── FTGLConfig.cmake
>> │   ├── FTGL-targets.cmake
>> │   └── FTGL-targets-release.cmake
>> ├── MOAB
>> │   └── MOABConfig.cmake
>> ├── paraview-5.4
>> │   ├── branded_paraview_initializer.cxx.in
>> │   ├── branded_paraview_initializer.h.in
>> │   ├── branded_paraview_main.cxx.in
>> │   ├── BundleUtilities.cmake
>> │   ├── CheckFortran.cmake
>> │   ├── CTestCustom.cmake.in
>> │   ├── ExternalData.cmake
>> │   ├── ExternalData_config.cmake.in
>> │   ├── FindATP.cmake
>> │   ├── FindCGNS.cmake
>> │   ├── FindGenericIO.cmake
>> │   ├── FindJSDuck.cmake
>> │   ├── Findpugixml.cmake
>> │   ├── FindSeleniumDrivers.cmake
>> │   ├── FindSILO.cmake
>> │   ├── FindTCL.cmake
>> │   ├── generate_category_rw.xsl
>> │   ├── generate_proxydocumentation.cmake
>> │   ├── generate_qhp.cmake
>> │   ├── MacOSXBundleInfo.plist.in.in
>> │   ├── Modules
>> │   │   ├── CinemaPython.cmake
>> │   │   ├── pqApplicationComponents.cmake
>> │   │   ├── pqComponents.cmake
>> │   │   ├── pqCore.cmake
>> │   │   ├── pqPython.cmake
>> │   │   ├── pqWidgets.cmake
>> │   │   ├── Pygments.cmake
>> │   │   ├── smTestDriver.cmake
>> │   │   ├── vtkalglib.cmake
>> │   │   ├── vtkcgns.cmake
>> │   │   ├── vtkChartsCore.cmake
>> │   │   ├── vtkChartsCoreHierarchy.txt
>> │   │   ├── vtkClientServer.cmake
>> │   │   ├── vtkCommonColor.cmake
>> │   │   ├── vtkCommonColorHierarchy.txt
>> │   │   ├── vtkCommonComputationalGeometry.cmake
>> │   │   ├── vtkCommonComputationalGeometryHierarchy.txt
>> │   │   ├── vtkCommonCore.cmake
>> │   │   ├── vtkCommonCoreHierarchy.txt
>> │   │   ├── vtkCommonDataModel.cmake
>> │   │   ├── vtkCommonDataModelHierarchy.txt
>> │   │   ├── vtkCommonExecutionModel.cmake
>> │   │   ├── vtkCommonExecutionModelHierarchy.txt
>> │   │   ├── vtkCommonMath.cmake
>> │   │   ├── vtkCommonMathHierarchy.txt
>> │   │   ├── vtkCommonMisc.cmake
>> │   │   ├── vtkCommonMiscHierarchy.txt
>> │   │   ├── vtkCommonSystem.cmake
>> │   │   ├── vtkCommonSystemHierarchy.txt
>> │   │   ├── vtkCommonTransforms.cmake
>> │   │   ├── vtkCommonTransformsHierarchy.txt
>> │   │   ├── vtkDICOMParser.cmake
>> │   │   ├── vtkDomainsChemistry.cmake
>> │   │   ├── vtkDomainsChemistryHierarchy.txt
>> │   │   ├── vtkDomainsChemistryOpenGL2.cmake
>> │   │   ├── vtkDomainsChemistryOpenGL2Hierarchy.txt
>> │   │   ├── vtkexodusII.cmake
>> │   │   ├── vtkexpat.cmake
>> │   │   ├── vtkFiltersAMR.cmake
>> │   │   ├── vtkFiltersAMRHierarchy.txt
>> │   │   ├── vtkFiltersCore.cmake
>> │   │   ├── vtkFiltersCoreHierarchy.txt
>> │   │   ├── vtkFiltersExtraction.cmake
>> │   │   ├── vtkFiltersExtractionHierarchy.txt
>> │   │   ├── vtkFiltersFlowPaths.cmake
>> │   │   ├── vtkFiltersFlowPathsHierarchy.txt
>> │   │   ├── vtkFiltersGeneral.cmake
>> │   │   ├── vtkFiltersGeneralHierarchy.txt
>> │   │   ├── vtkFiltersGeneric.cmake
>> │   │   ├── vtkFiltersGenericHierarchy.txt
>> │   │   ├── vtkFiltersGeometry.cmake
>> │   │   ├── vtkFiltersGeometryHierarchy.txt
>> │   │   ├── vtkFiltersHybrid.cmake
>> │   │   ├── vtkFiltersHybridHierarchy.txt
>> │   │   ├── vtkFiltersHyperTree.cmake
>> │   │   ├── vtkFiltersHyperTreeHierarchy.txt
>> │   │   ├── vtkFiltersImaging.cmake
>> │   │   ├── vtkFiltersImagingHierarchy.txt
>> │   │   ├── vtkFiltersModeling.cmake
>> │   │   ├── vtkFiltersModelingHierarchy.txt
>> │   │   ├── vtkFiltersParallel.cmake
>> │   │   ├── vtkFiltersParallelHierarchy.txt
>> │   │   ├── vtkFiltersParallelStatistics.cmake
>> │   │   ├── vtkFiltersParallelStatisticsHierarchy.txt
>> │   │   ├── vtkFiltersPoints.cmake
>> │   │   ├── vtkFiltersPointsHierarchy.txt
>> │   │   ├── vtkFiltersProgrammable.cmake
>> │   │   ├── vtkFiltersProgrammableHierarchy.txt
>> │   │   ├── vtkFiltersPython.cmake
>> │   │   ├── vtkFiltersPythonHierarchy.txt
>> │   │   ├── vtkFiltersSources.cmake
>> │   │   ├── vtkFiltersSourcesHierarchy.txt
>> │   │   ├── vtkFiltersStatistics.cmake
>> │   │   ├── vtkFiltersStatisticsHierarchy.txt
>> │   │   ├── vtkFiltersTexture.cmake
>> │   │   ├── vtkFiltersTextureHierarchy.txt
>> │   │   ├── vtkFiltersVerdict.cmake
>> │   │   ├── vtkFiltersVerdictHierarchy.txt
>> │   │   ├── vtkfreetype.cmake
>> │   │   ├── vtkGeovisCore.cmake
>> │   │   ├── vtkGeovisCoreHierarchy.txt
>> │   │   ├── vtkgl2ps.cmake
>> │   │   ├── vtkglew.cmake
>> │   │   ├── vtkGUISupportQt.cmake
>> │   │   ├── vtkhdf5.cmake
>> │   │   ├── vtkImagingColor.cmake
>> │   │   ├── vtkImagingColorHierarchy.txt
>> │   │   ├── vtkImagingCore.cmake
>> │   │   ├── vtkImagingCoreHierarchy.txt
>> │   │   ├── vtkImagingFourier.cmake
>> │   │   ├── vtkImagingFourierHierarchy.txt
>> │   │   ├── vtkImagingGeneral.cmake
>> │   │   ├── vtkImagingGeneralHierarchy.txt
>> │   │   ├── vtkImagingHybrid.cmake
>> │   │   ├── vtkImagingHybridHierarchy.txt
>> │   │   ├── vtkImagingMath.cmake
>> │   │   ├── vtkImagingMathHierarchy.txt
>> │   │   ├── vtkImagingMorphological.cmake
>> │   │   ├── vtkImagingMorphologicalHierarchy.txt
>> │   │   ├── vtkImagingSources.cmake
>> │   │   ├── vtkImagingSourcesHierarchy.txt
>> │   │   ├── vtkInfovisCore.cmake
>> │   │   ├── vtkInfovisCoreHierarchy.txt
>> │   │   ├── vtkInfovisLayout.cmake
>> │   │   ├── vtkInfovisLayoutHierarchy.txt
>> │   │   ├── vtkInteractionImage.cmake
>> │   │   ├── vtkInteractionImageHierarchy.txt
>> │   │   ├── vtkInteractionStyle.cmake
>> │   │   ├── vtkInteractionStyleHierarchy.txt
>> │   │   ├── vtkInteractionWidgets.cmake
>> │   │   ├── vtkInteractionWidgetsHierarchy.txt
>> │   │   ├── vtkIOAMR.cmake
>> │   │   ├── vtkIOAMRHierarchy.txt
>> │   │   ├── vtkIOCore.cmake
>> │   │   ├── vtkIOCoreHierarchy.txt
>> │   │   ├── vtkIOEnSight.cmake
>> │   │   ├── vtkIOEnSightHierarchy.txt
>> │   │   ├── vtkIOExodus.cmake
>> │   │   ├── vtkIOExodusHierarchy.txt
>> │   │   ├── vtkIOExport.cmake
>> │   │   ├── vtkIOExportHierarchy.txt
>> │   │   ├── vtkIOExportOpenGL2.cmake
>> │   │   ├── vtkIOExportOpenGL2Hierarchy.txt
>> │   │   ├── vtkIOGDAL.cmake
>> │   │   ├── vtkIOGDALHierarchy.txt
>> │   │   ├── vtkIOGeometry.cmake
>> │   │   ├── vtkIOGeometryHierarchy.txt
>> │   │   ├── vtkIOImage.cmake
>> │   │   ├── vtkIOImageHierarchy.txt
>> │   │   ├── vtkIOImport.cmake
>> │   │   ├── vtkIOImportHierarchy.txt
>> │   │   ├── vtkIOInfovis.cmake
>> │   │   ├── vtkIOInfovisHierarchy.txt
>> │   │   ├── vtkIOLegacy.cmake
>> │   │   ├── vtkIOLegacyHierarchy.txt
>> │   │   ├── vtkIOLSDyna.cmake
>> │   │   ├── vtkIOLSDynaHierarchy.txt
>> │   │   ├── vtkIOMovie.cmake
>> │   │   ├── vtkIOMovieHierarchy.txt
>> │   │   ├── vtkIONetCDF.cmake
>> │   │   ├── vtkIONetCDFHierarchy.txt
>> │   │   ├── vtkIOParallel.cmake
>> │   │   ├── vtkIOParallelExodus.cmake
>> │   │   ├── vtkIOParallelExodusHierarchy.txt
>> │   │   ├── vtkIOParallelHierarchy.txt
>> │   │   ├── vtkIOParallelLSDyna.cmake
>> │   │   ├── vtkIOParallelLSDynaHierarchy.txt
>> │   │   ├── vtkIOParallelXML.cmake
>> │   │   ├── vtkIOParallelXMLHierarchy.txt
>> │   │   ├── vtkIOPLY.cmake
>> │   │   ├── vtkIOPLYHierarchy.txt
>> │   │   ├── vtkIOTecplotTable.cmake
>> │   │   ├── vtkIOTecplotTableHierarchy.txt
>> │   │   ├── vtkIOTRUCHAS.cmake
>> │   │   ├── vtkIOTRUCHASHierarchy.txt
>> │   │   ├── vtkIOVPIC.cmake
>> │   │   ├── vtkIOVPICHierarchy.txt
>> │   │   ├── vtkIOXdmf2.cmake
>> │   │   ├── vtkIOXdmf2Hierarchy.txt
>> │   │   ├── vtkIOXML.cmake
>> │   │   ├── vtkIOXMLHierarchy.txt
>> │   │   ├── vtkIOXMLParser.cmake
>> │   │   ├── vtkIOXMLParserHierarchy.txt
>> │   │   ├── vtkjpeg.cmake
>> │   │   ├── vtkjsoncpp.cmake
>> │   │   ├── vtkkwiml.cmake
>> │   │   ├── vtklibproj4.cmake
>> │   │   ├── vtklibxml2.cmake
>> │   │   ├── vtklz4.cmake
>> │   │   ├── vtkMetaIO.cmake
>> │   │   ├── vtknetcdf.cmake
>> │   │   ├── vtknetcdfcpp.cmake
>> │   │   ├── vtkoggtheora.cmake
>> │   │   ├── vtkParallelCore.cmake
>> │   │   ├── vtkParallelCoreHierarchy.txt
>> │   │   ├── vtkpng.cmake
>> │   │   ├── vtkprotobuf.cmake
>> │   │   ├── vtkpugixml.cmake
>> │   │   ├── vtkPVAnimation.cmake
>> │   │   ├── vtkPVAnimationHierarchy.txt
>> │   │   ├── vtkPVCinemaReader.cmake
>> │   │   ├── vtkPVCinemaReaderHierarchy.txt
>> │   │   ├── vtkPVClientServerCoreCore.cmake
>> │   │   ├── vtkPVClientServerCoreCoreHierarchy.txt
>> │   │   ├── vtkPVClientServerCoreCore_HINTS
>> │   │   ├── vtkPVClientServerCoreDefault.cmake
>> │   │   ├── vtkPVClientServerCoreDefaultHierarchy.txt
>> │   │   ├── vtkPVClientServerCoreRendering.cmake
>> │   │   ├── vtkPVClientServerCoreRenderingHierarchy.txt
>> │   │   ├── vtkPVClientServerCoreRendering_HINTS
>> │   │   ├── vtkPVCommon.cmake
>> │   │   ├── vtkPVCommonHierarchy.txt
>> │   │   ├── vtkPVServerImplementationCore.cmake
>> │   │   ├── vtkPVServerImplementationCoreHierarchy.txt
>> │   │   ├── vtkPVServerImplementationRendering.cmake
>> │   │   ├── vtkPVServerImplementationRenderingHierarchy.txt
>> │   │   ├── vtkPVServerManagerApplication.cmake
>> │   │   ├── vtkPVServerManagerApplicationHierarchy.txt
>> │   │   ├── vtkPVServerManagerCore.cmake
>> │   │   ├── vtkPVServerManagerCoreHierarchy.txt
>> │   │   ├── vtkPVServerManagerDefault.cmake
>> │   │   ├── vtkPVServerManagerDefaultHierarchy.txt
>> │   │   ├── vtkPVServerManagerRendering.cmake
>> │   │   ├── vtkPVServerManagerRenderingHierarchy.txt
>> │   │   ├── vtkPVVTKExtensionsCGNSReader.cmake
>> │   │   ├── vtkPVVTKExtensionsCGNSReaderHierarchy.txt
>> │   │   ├── vtkPVVTKExtensionsCore.cmake
>> │   │   ├── vtkPVVTKExtensionsCoreHierarchy.txt
>> │   │   ├── vtkPVVTKExtensionsDefault.cmake
>> │   │   ├── vtkPVVTKExtensionsDefaultHierarchy.txt
>> │   │   ├── vtkPVVTKExtensionsDefault_HINTS
>> │   │   ├── vtkPVVTKExtensionsH5PartReader.cmake
>> │   │   ├── vtkPVVTKExtensionsH5PartReaderHierarchy.txt
>> │   │   ├── vtkPVVTKExtensionsPoints.cmake
>> │   │   ├── vtkPVVTKExtensionsPointsHierarchy.txt
>> │   │   ├── vtkPVVTKExtensionsRendering.cmake
>> │   │   ├── vtkPVVTKExtensionsRenderingHierarchy.txt
>> │   │   ├── vtkPython.cmake
>> │   │   ├── vtkPythonInterpreter.cmake
>> │   │   ├── vtkPythonInterpreterHierarchy.txt
>> │   │   ├── vtkqttesting.cmake
>> │   │   ├── vtkRenderingAnnotation.cmake
>> │   │   ├── vtkRenderingAnnotationHierarchy.txt
>> │   │   ├── vtkRenderingContext2D.cmake
>> │   │   ├── vtkRenderingContext2DHierarchy.txt
>> │   │   ├── vtkRenderingContextOpenGL2.cmake
>> │   │   ├── vtkRenderingContextOpenGL2Hierarchy.txt
>> │   │   ├── vtkRenderingCore.cmake
>> │   │   ├── vtkRenderingCoreHierarchy.txt
>> │   │   ├── vtkRenderingFreeType.cmake
>> │   │   ├── vtkRenderingFreeTypeHierarchy.txt
>> │   │   ├── vtkRenderingGL2PSOpenGL2.cmake
>> │   │   ├── vtkRenderingGL2PSOpenGL2Hierarchy.txt
>> │   │   ├── vtkRenderingLabel.cmake
>> │   │   ├── vtkRenderingLabelHierarchy.txt
>> │   │   ├── vtkRenderingLICOpenGL2.cmake
>> │   │   ├── vtkRenderingLICOpenGL2Hierarchy.txt
>> │   │   ├── vtkRenderingLOD.cmake
>> │   │   ├── vtkRenderingLODHierarchy.txt
>> │   │   ├── vtkRenderingMatplotlib.cmake
>> │   │   ├── vtkRenderingMatplotlibHierarchy.txt
>> │   │   ├── vtkRenderingOpenGL2.cmake
>> │   │   ├── vtkRenderingOpenGL2Hierarchy.txt
>> │   │   ├── vtkRenderingParallel.cmake
>> │   │   ├── vtkRenderingParallelHierarchy.txt
>> │   │   ├── vtkRenderingVolumeAMR.cmake
>> │   │   ├── vtkRenderingVolumeAMRHierarchy.txt
>> │   │   ├── vtkRenderingVolume.cmake
>> │   │   ├── vtkRenderingVolumeHierarchy.txt
>> │   │   ├── vtkRenderingVolumeOpenGL2.cmake
>> │   │   ├── vtkRenderingVolumeOpenGL2Hierarchy.txt
>> │   │   ├── vtksys.cmake
>> │   │   ├── vtkTestingCore.cmake
>> │   │   ├── vtkTestingRendering.cmake
>> │   │   ├── vtkTestingRenderingHierarchy.txt
>> │   │   ├── vtktiff.cmake
>> │   │   ├── vtkUtilitiesEncodeString.cmake
>> │   │   ├── vtkUtilitiesHashSource.cmake
>> │   │   ├── vtkUtilitiesLegacyColorMapXMLToJSON.cmake
>> │   │   ├── vtkUtilitiesProcessXML.cmake
>> │   │   ├── vtkUtilitiesPythonInitializer.cmake
>> │   │   ├── vtkUtilitiesWrapClientServer.cmake
>> │   │   ├── vtkverdict.cmake
>> │   │   ├── vtkViewsContext2D.cmake
>> │   │   ├── vtkViewsContext2DHierarchy.txt
>> │   │   ├── vtkViewsCore.cmake
>> │   │   ├── vtkViewsCoreHierarchy.txt
>> │   │   ├── vtkViewsInfovis.cmake
>> │   │   ├── vtkViewsInfovisHierarchy.txt
>> │   │   ├── vtkVPIC.cmake
>> │   │   ├── vtkWrappingPythonCore.cmake
>> │   │   ├── vtkWrappingTools.cmake
>> │   │   ├── vtkxdmf2.cmake
>> │   │   └── vtkzlib.cmake
>> │   ├── ParaViewBranding.cmake
>> │   ├── ParaViewBrandingCPack.cmake
>> │   ├── ParaViewBrandingInstallApp.cmake
>> │   ├── ParaViewCheckSourceTree.cmake
>> │   ├── ParaViewConfig.cmake
>> │   ├── ParaViewConfigVersion.cmake
>> │   ├── ParaViewCPackOptions.cmake.in
>> │   ├── ParaViewDetermineVersion.cmake
>> │   ├── ParaViewExternalData.cmake
>> │   ├── ParaViewMacros.cmake
>> │   ├── ParaViewModuleTop.cmake
>> │   ├── ParaViewPluginPackaging.cmake
>> │   ├── ParaViewPlugins.cmake
>> │   ├── ParaViewPluginsMacros.cmake
>> │   ├── ParaViewQt.cmake
>> │   ├── ParaViewTargets.cmake
>> │   ├── ParaViewTargets-release.cmake
>> │   ├── ParaViewTestingMacros.cmake
>> │   ├── ParaViewTestInstall.cmake
>> │   ├── ParaViewValgrindSuppressions.supp
>> │   ├── pqActionGroupImplementation.cxx.in
>> │   ├── pqActionGroupImplementation.h.in
>> │   ├── pqAutoStartImplementation.cxx.in
>> │   ├── pqAutoStartImplementation.h.in
>> │   ├── pqDisplayPanelImplementation.cxx.in
>> │   ├── pqDisplayPanelImplementation.h.in
>> │   ├── pqDockWindowImplementation.cxx.in
>> │   ├── pqDockWindowImplementation.h.in
>> │   ├── pqGraphLayoutStrategyImplementation.cxx.in
>> │   ├── pqGraphLayoutStrategyImplementation.h.in
>> │   ├── pqParaViewPlugin.cxx.in
>> │   ├── pqParaViewPlugin.h.in
>> │   ├── pqPropertyWidgetInterface.cxx.in
>> │   ├── pqPropertyWidgetInterface.h.in
>> │   ├── pqServerManagerModelImplementation.cxx.in
>> │   ├── pqServerManagerModelImplementation.h.in
>> │   ├── pqTreeLayoutStrategyImplementation.cxx.in
>> │   ├── pqTreeLayoutStrategyImplementation.h.in
>> │   ├── pqViewFrameActionGroupImplementation.cxx.in
>> │   ├── pqViewFrameActionGroupImplementation.h.in
>> │   ├── pre-commit
>> │   ├── pv-forward.c.in
>> │   ├── pvForwardingExecutable.cmake
>> │   ├── pythonmodules.h.in
>> │   ├── Qt4Macros-CMake2.8.7.cmake
>> │   ├── smxml_to_xml.xsl
>> │   ├── TopologicalSort.cmake
>> │   ├── TryRunResults-ParaView3-bgl-gcc.cmake
>> │   ├── TryRunResults-ParaView3-bgl-xlc.cmake
>> │   ├── TryRunResults-ParaView3-catamount-gcc.cmake
>> │   ├── TryRunResults-ParaView3-catamount-pgi.cmake
>> │   ├── TryRunResults-ParaView3-cnl-gcc.cmake
>> │   ├── TryRunResults-ParaView3-cnl-pgi.cmake
>> │   ├── UseParaView.cmake
>> │   ├── UseVTK.cmake
>> │   ├── vtkClientServerWrapping.cmake
>> │   ├── VTKConfig.cmake
>> │   ├── VTKConfigVersion.cmake
>> │   ├── vtkexportheader.cmake.in
>> │   ├── vtkExternalModuleMacros.cmake
>> │   ├── vtk-forward.c.in
>> │   ├── vtkForwardingExecutable.cmake
>> │   ├── VTKGenerateExportHeader.cmake
>> │   ├── vtkGroups.cmake
>> │   ├── vtkJavaWrapping.cmake
>> │   ├── vtkMakeInstantiator.cmake
>> │   ├── vtkMakeInstantiator.cxx.in
>> │   ├── vtkMakeInstantiator.h.in
>> │   ├── vtkModuleAPI.cmake
>> │   ├── vtkModuleHeaders.cmake.in
>> │   ├── vtkModuleInfo.cmake.in
>> │   ├── vtkModuleMacros.cmake
>> │   ├── vtkModuleMacrosPython.cmake
>> │   ├── VTKModules.cmake
>> │   ├── vtkMPI.cmake
>> │   ├── vtkObjectFactory.cxx.in
>> │   ├── vtkObjectFactory.h.in
>> │   ├── vtkPythonPackages.cmake
>> │   ├── vtkPythonWrapping.cmake
>> │   ├── vtkTargetLinkLibrariesWithDynamicLookup.cmake
>> │   ├── vtkTclTkMacros.cmake
>> │   ├── vtkTclWrapping.cmake
>> │   ├── vtkThirdParty.cmake
>> │   ├── vtkWrapClientServer.cmake
>> │   ├── vtkWrapClientServer.cxx.in
>> │   ├── vtkWrapHierarchy.cmake
>> │   ├── vtkWrapJava.cmake
>> │   ├── vtkWrapperInit.data.in
>> │   ├── vtkWrapping.cmake
>> │   ├── vtkWrapPython.cmake
>> │   ├── vtkWrapPythonSIP.cmake
>> │   ├── vtkWrapPython.sip.in
>> │   ├── vtkWrapTcl.cmake
>> │   ├── xml_to_html.xsl
>> │   └── xml_to_wiki.xsl.in
>> ├── qttesting
>> │   ├── ParaViewTargets.cmake
>> │   ├── ParaViewTargets-release.cmake
>> │   └── QtTestingConfig.cmake
>> ├── Remus
>> │   ├── FindZeroMQ.cmake
>> │   ├── RemusConfig.cmake
>> │   ├── RemusRegisterWorker.cmake
>> │   ├── Remus-targets.cmake
>> │   └── Remus-targets-release.cmake
>> └── Shiboken-1.2.1
>>     ├── ShibokenConfig.cmake
>>     ├── ShibokenConfig-python2.7.cmake
>>     └── ShibokenConfigVersion.cmake
>>
>>
>> 2017-05-16 17:13 GMT-04:00 Ben Boeckel <ben.boeckel at kitware.com>:
>>> On Tue, May 16, 2017 at 13:01:32 -0400, Maxim Torgonskiy wrote:
>>>>   include could not find load file:
>>>>     cmb-superbuild_build/install/lib/cmake/MOAB/MOABTargets.cmake
>>>>
>>>> I've checked the repos smtk (branch master) and moab (branch
>>>> for/smtk), there's no such file 'MOABTargets.cmake'.
>>>
>>> This file is generated during the build; they won't exist in the source
>>> directories at all. What else is in the install/lib/cmake/* directories?
>>>
>>> --Ben

2017-05-16 17:13 GMT-04:00 Ben Boeckel <ben.boeckel at kitware.com>:
> On Tue, May 16, 2017 at 13:01:32 -0400, Maxim Torgonskiy wrote:
>>   include could not find load file:
>>     cmb-superbuild_build/install/lib/cmake/MOAB/MOABTargets.cmake
>>
>> I've checked the repos smtk (branch master) and moab (branch
>> for/smtk), there's no such file 'MOABTargets.cmake'.
>
> This file is generated during the build; they won't exist in the source
> directories at all. What else is in the install/lib/cmake/* directories?
>
> --Ben


More information about the Smtk-developers mailing list