just to let you all know!<br><br>that worked, thanks all for the help<br><br>and shouldn&#39;t this be on the wiki?<br><br><br><br><div class="gmail_quote">On Wed, Jan 7, 2009 at 1:26 PM, Utkarsh Ayachit <span dir="ltr">&lt;<a href="mailto:utkarsh.ayachit@kitware.com">utkarsh.ayachit@kitware.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Add the following two lines to your CMakeLists and set the<br>
ParaView_DIR to point to the &nbsp;/Users/jmazo/ParaView-3.4.0/Build<br>
BEGIN=====<br>
FIND_PACKAGE(ParaView REQUIRED)<br>
INCLUDE(${PARAVIEW_USE_FILE})<br>
END====<br>
<font color="#888888"><br>
Utkarsh<br>
</font><div><div></div><div class="Wj3C7c"><br>
<br>
On Wed, Jan 7, 2009 at 1:18 PM, Jorge Mario Mazo &lt;<a href="mailto:jmm.mecanica@gmail.com">jmm.mecanica@gmail.com</a>&gt; wrote:<br>
&gt; Hi there<br>
&gt; I followed you instructions but still did not work<br>
&gt; here is what I did<br>
&gt; 1. downloaded paraview-3.4.0.tar.gz, and uncompress it, and got a directory<br>
&gt; ParaView-3.4.0<br>
&gt; &nbsp; yarumal8:ParaView-3.4.0 jmazo$ pwd<br>
&gt; &nbsp; /Users/jmazo/ParaView-3.4.0<br>
&gt; 2. Created the directory Build inside ParaView-3.4.0<br>
&gt; &nbsp; &nbsp; in there<br>
&gt; &nbsp; &nbsp; configured, BUILD_SHARED_LIBS=ON, VTK_USE_RPATH=ON, and PYTHON=ON<br>
&gt; &nbsp; &nbsp; build with make -j 8<br>
&gt;<br>
&gt; yarumal8:ParaView-3.4.0 jmazo$ pwd<br>
&gt; /Users/jmazo/ParaView-3.4.0<br>
&gt; yarumal8:ParaView-3.4.0 jmazo$ ls Build/<br>
&gt; Applications &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DartConfiguration.tcl &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Testing<br>
&gt; CMakeCache.txt &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Documentation &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Utilities<br>
&gt; CMakeFiles &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VTK<br>
&gt; CMakeTmp &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ParaView3CompileToolsConfig.cmake &nbsp; &nbsp;bin<br>
&gt; CPackConfig.cmake &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ParaViewConfig.cmake<br>
&gt; cmake_install.cmake<br>
&gt; CPackSourceConfig.cmake &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ParaViewLibraryDepends.cmake<br>
&gt; pqClient.adp<br>
&gt; CTestCustom.ctest &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Plugins &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;vtkPQConfig.h<br>
&gt; CTestTestfile.cmake &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Qt &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;vtkPVConfig.h<br>
&gt; Common &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Servers<br>
&gt; yarumal8:ParaView-3.4.0 jmazo$<br>
&gt;<br>
&gt; 3. set the varialbes<br>
&gt;<br>
&gt; yarumal8:ParaView-3.4.0 jmazo$ echo $QTDIR<br>
&gt; /Users/jmazo/ParaView-3.4.0/Build<br>
&gt; yarumal8:ParaView-3.4.0 jmazo$ echo $ParaView_DIR<br>
&gt; /Users/jmazo/ParaView-3.4.0<br>
&gt;<br>
&gt; I had to add PACKAGE_FIND(Qt4) becuase I got the QT4_WRAP error<br>
&gt; so here is the CMakeList<br>
&gt;<br>
&gt; yarumal8:Plugins jmazo$ cat GUIToolBar/CMakeLists.txt<br>
&gt; FIND_PACKAGE(Qt4)<br>
&gt;<br>
&gt; # create a plugin that implements an object panel for a source proxy<br>
&gt;<br>
&gt; QT4_WRAP_CPP(MOC_SRCS MyToolBarActions.h)<br>
&gt;<br>
&gt; # we implement a pqConePanel.h for the ConeSource<br>
&gt; ADD_PARAVIEW_ACTION_GROUP(IFACES IFACE_SRCS CLASS_NAME MyToolBarActions<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; GROUP_NAME &quot;ToolBar/MyActions&quot;)<br>
&gt;<br>
&gt; # create a plugin for this panel<br>
&gt; ADD_PARAVIEW_PLUGIN(GUIMyToolBar &quot;1.0&quot;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; GUI_INTERFACES ${IFACES}<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOURCES MyToolBarActions.cxx ${MOC_SRCS} ${IFACE_SRCS})<br>
&gt;<br>
&gt;<br>
&gt; yarumal8:Plugins jmazo$ cmake GUIToolBar<br>
&gt; -- The C compiler identification is GNU<br>
&gt; -- The CXX compiler identification is GNU<br>
&gt; -- Check for working C compiler: /usr/bin/gcc<br>
&gt; -- Check for working C compiler: /usr/bin/gcc -- works<br>
&gt; -- Detecting C compiler ABI info<br>
&gt; -- Detecting C compiler ABI info - done<br>
&gt; -- Check for working CXX compiler: /usr/bin/c++<br>
&gt; -- Check for working CXX compiler: /usr/bin/c++ -- works<br>
&gt; -- Detecting CXX compiler ABI info<br>
&gt; -- Detecting CXX compiler ABI info - done<br>
&gt; -- Looking for Q_WS_X11<br>
&gt; -- Looking for Q_WS_X11 - not found.<br>
&gt; -- Looking for Q_WS_WIN<br>
&gt; -- Looking for Q_WS_WIN - not found.<br>
&gt; -- Looking for Q_WS_QWS<br>
&gt; -- Looking for Q_WS_QWS - not found.<br>
&gt; -- Looking for Q_WS_MAC<br>
&gt; -- Looking for Q_WS_MAC - found<br>
&gt; -- Found Qt-Version 4.3.5<br>
&gt; -- Found OpenSSL: /usr/lib/libssl.dylib<br>
&gt; CMake Error at CMakeLists.txt:8 (ADD_PARAVIEW_ACTION_GROUP):<br>
&gt; &nbsp; Unknown CMake command &quot;ADD_PARAVIEW_ACTION_GROUP&quot;.<br>
&gt;<br>
&gt;<br>
&gt; CMake Warning (dev) in CMakeLists.txt:<br>
&gt; &nbsp; No cmake_minimum_required command is present. &nbsp;A line of code such as<br>
&gt;<br>
&gt; &nbsp; &nbsp; cmake_minimum_required(VERSION 2.6)<br>
&gt;<br>
&gt; &nbsp; should be added at the top of the file. &nbsp;The version specified may be<br>
&gt; lower<br>
&gt; &nbsp; if you wish to support older CMake versions for this project. &nbsp;For more<br>
&gt; &nbsp; information run &quot;cmake --help-policy CMP0000&quot;.<br>
&gt; This warning is for project developers. &nbsp;Use -Wno-dev to suppress it.<br>
&gt;<br>
&gt; -- Configuring incomplete, errors occurred!<br>
&gt;<br>
&gt; ###################################################################<br>
&gt;<br>
&gt; :(<br>
&gt;<br>
&gt; Still lost<br>
&gt;<br>
&gt; thanks a lot<br>
&gt;<br>
&gt; On Wed, Jan 7, 2009 at 12:02 PM, Michael Jackson<br>
&gt; &lt;<a href="mailto:mike.jackson@bluequartz.net">mike.jackson@bluequartz.net</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Here is what we are saying for ParaView 3.4.0<br>
&gt;&gt;<br>
&gt;&gt; 1: Download the source for PV 3.4.0 from the kitware website.<br>
&gt;&gt; 2: Uncompress the file, this should create a folder ParaView<br>
&gt;&gt; 3: cd into ParaView<br>
&gt;&gt; 4: mkdir Build<br>
&gt;&gt; 5: cd Build<br>
&gt;&gt; 6: ccmake ../<br>
&gt;&gt; &nbsp;6a: Turn ON SHARED_LIBS<br>
&gt;&gt; &nbsp;6b: [c]onfigure<br>
&gt;&gt; &nbsp;6c: [g]enerate<br>
&gt;&gt; 7: make &nbsp;( Wait a long time for the build. use the -jx flag for make to<br>
&gt;&gt; speed up the compile)<br>
&gt;&gt; 8: You are done with paraview build. DO NOT &quot;install&quot; paraview anywhere.<br>
&gt;&gt;<br>
&gt;&gt; Assume this was done in /home/jmazo/paraview/Build<br>
&gt;&gt; export QTDIR=/home/jmazo/paraview/Build<br>
&gt;&gt;<br>
&gt;&gt; Now try to build your plugin. Qt and ParaView specific macros should be<br>
&gt;&gt; found.<br>
&gt;&gt;<br>
&gt;&gt; If you are building ParaView anyway you may want to consider having your<br>
&gt;&gt; plugin build as part of the ParaView build.<br>
&gt;&gt;<br>
&gt;&gt; ---<br>
&gt;&gt; Mike Jackson &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.bluequartz.net" target="_blank">www.bluequartz.net</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Jan 7, 2009, at 11:50 AM, Jorge Mario Mazo wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt; hi there<br>
&gt;&gt;&gt; so what you are saying is that I need the cvs version of paraview?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I tried building paraview with sources 3.4.0 in<br>
&gt;&gt;&gt; /home/jmazo/parasrc<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; then set the variable to &nbsp;/home/jmazo/parasrc<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; then tried to build a plugin but I still get the QT error, so I added<br>
&gt;&gt;&gt; find_package(Qt4)<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; but I still get the paraview errors<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; thanks in advance, I&#39;m going to try with the cvs version<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Wed, Jan 7, 2009 at 9:52 AM, Utkarsh Ayachit<br>
&gt;&gt;&gt; &lt;<a href="mailto:utkarsh.ayachit@kitware.com">utkarsh.ayachit@kitware.com</a>&gt; wrote:<br>
&gt;&gt;&gt; Jorge,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; First of, you cannot build new plugins using an installed ParaView (at<br>
&gt;&gt;&gt; for ParaView 3.4.* and earlier, it should work with CVS ParaView). You<br>
&gt;&gt;&gt; need to download the source and build ParaView from scartch. Then set<br>
&gt;&gt;&gt; the ParaView_DIR to the directory in which you&#39;ve built ParaView.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Utkarsh<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Tue, Jan 6, 2009 at 5:50 PM, Jorge Mario Mazo &lt;<a href="mailto:jmm.mecanica@gmail.com">jmm.mecanica@gmail.com</a>&gt;<br>
&gt;&gt;&gt; wrote:<br>
&gt;&gt;&gt; &gt; hi there<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; I did the find<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; find / -name ParaViewConfig.cmake<br>
&gt;&gt;&gt; &gt; /Users/jmazo/Desktop/paraview/ParaViewConfig.cmake<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; so I set<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; yarumal8:Plugins jmazo$ export ParaView_DIR=/Users/jmazo/<br>
&gt;&gt;&gt; &gt; Desktop/paraview<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; but I get the same error<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; Unknown CMake command &quot;ADD_PARAVIEW_ACTION_GROUP&quot;.<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; I&#39;m running ccmake on<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; /Users/jmazo/Desktop/fofo/ParaView-3.4.0/Examples/Plugins<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; and when I did make install I set the dir to<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; /Users/jmazo/gato<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; I tried setting ParaView_DIR to<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; /Users/jmazo/gato<br>
&gt;&gt;&gt; &gt; /Users/jmazo/Desktop/paraview/<br>
&gt;&gt;&gt; &gt; /Users/jmazo/Desktop/fofo/ParaView-3.4.0<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; but I got the same error on all cases<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; any ideas<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; thanks<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; On Tue, Jan 6, 2009 at 4:57 PM, Michael Jackson<br>
&gt;&gt;&gt; &gt; &lt;<a href="mailto:mike.jackson@bluequartz.net">mike.jackson@bluequartz.net</a>&gt; wrote:<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; So you installed ParaView 3.4 into /Users/jmazo/gato?<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; then ParaView_DIR should be /Users/jmazo/gato<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; I think..<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; Also, keep the discussion on list in case someone else wants to help<br>
&gt;&gt;&gt; &gt;&gt; out..<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; ---<br>
&gt;&gt;&gt; &gt;&gt; Mike Jackson &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.bluequartz.net" target="_blank">www.bluequartz.net</a><br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; On Jan 6, 2009, at 4:39 PM, Jorge Mario Mazo wrote:<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; Hi there<br>
&gt;&gt;&gt; &gt;&gt;&gt; and sorry for the bothering<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; I did the find<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; find / -name ParaViewConfig.cmake<br>
&gt;&gt;&gt; &gt;&gt;&gt; /Users/jmazo/Desktop/paraview/ParaViewConfig.cmake<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; so I set<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; yarumal8:Plugins jmazo$ export<br>
&gt;&gt;&gt; &gt;&gt;&gt; ParaView_DIR=/Users/jmazo/Desktop/paraview<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; but I get the same error<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; Unknown CMake command &quot;ADD_PARAVIEW_ACTION_GROUP&quot;.<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; I&#39;m running ccmake on<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; /Users/jmazo/Desktop/fofo/ParaView-3.4.0/Examples/Plugins<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; and when I did make install I set the dir to<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; /Users/jmazo/gato<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; arumal8:gato jmazo$ pwd<br>
&gt;&gt;&gt; &gt;&gt;&gt; /Users/jmazo/gato<br>
&gt;&gt;&gt; &gt;&gt;&gt; yarumal8:gato jmazo$ ls<br>
&gt;&gt;&gt; &gt;&gt;&gt; bin &nbsp; &nbsp;include &nbsp; &nbsp;lib &nbsp; &nbsp;plugins<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; thank you very much for all your help<br>
&gt;&gt;&gt; &gt;&gt;&gt; On Tue, Jan 6, 2009 at 4:24 PM, Michael Jackson<br>
&gt;&gt;&gt; &gt;&gt;&gt; &lt;<a href="mailto:mike.jackson@bluequartz.net">mike.jackson@bluequartz.net</a>&gt; wrote:<br>
&gt;&gt;&gt; &gt;&gt;&gt; You need to set the environment variable &quot;ParaView_DIR&quot; to the<br>
&gt;&gt;&gt; &gt;&gt;&gt; correct<br>
&gt;&gt;&gt; &gt;&gt;&gt; directory.<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; ---<br>
&gt;&gt;&gt; &gt;&gt;&gt; Mike Jackson &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.bluequartz.net" target="_blank">www.bluequartz.net</a><br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; On Jan 6, 2009, at 4:21 PM, Jorge Mario Mazo wrote:<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; thanks for the quick answer<br>
&gt;&gt;&gt; &gt;&gt;&gt; but I get this error now<br>
&gt;&gt;&gt; &gt;&gt;&gt; ############################################################<br>
&gt;&gt;&gt; &gt;&gt;&gt; CMake Error at CMakeLists.txt:4 (INCLUDE):<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; i<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;nclude could not find load file:<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;/ParaViewConfig.cmake<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;CMake Error at CMakeLists.txt:20 (ADD_PARAVIEW_ACTION_GROUP):<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;Unknown CMake command &quot;ADD_PARAVIEW_ACTION_GROUP&quot;.<br>
&gt;&gt;&gt; &gt;&gt;&gt; ####################################<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; a find gave me this:<br>
&gt;&gt;&gt; &gt;&gt;&gt; find / -name ParaViewConfig.cmake<br>
&gt;&gt;&gt; &gt;&gt;&gt; /Users/jmazo/Desktop/paraview/ParaViewConfig.cmake<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; so moved the &nbsp;file to / and now I get<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;CMake Error at CMakeLists.txt:20 (ADD_PARAVIEW_ACTION_GROUP):<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;Unknown CMake command &quot;ADD_PARAVIEW_ACTION_GROUP&quot;.<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; the CMakeLists.txt looks like this<br>
&gt;&gt;&gt; &gt;&gt;&gt; ###########################################<br>
&gt;&gt;&gt; &gt;&gt;&gt; IF (DEFINED ParaView_BINARY_DIR)<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;INCLUDE(${ParaView_BINARY_DIR}/ParaViewConfig.cmake)<br>
&gt;&gt;&gt; &gt;&gt;&gt; ELSE (DEFINED ParaView_BINARY_DIR)<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;INCLUDE($ENV{ParaView_DIR}/ParaViewConfig.cmake)<br>
&gt;&gt;&gt; &gt;&gt;&gt; ENDIF (DEFINED ParaView_BINARY_DIR)<br>
&gt;&gt;&gt; &gt;&gt;&gt; PROJECT(RoboMetClientPlugin)<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; FIND_PACKAGE(Qt4)<br>
&gt;&gt;&gt; &gt;&gt;&gt; IF(QT4_FOUND)<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; INCLUDE(${QT_USE_FILE})<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;#-- All your Qt4 dependent code in here.<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; ################################################CMAKELists.txt#################<br>
&gt;&gt;&gt; &gt;&gt;&gt; # create a plugin that implements an object panel for a source proxy<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; QT4_WRAP_CPP(MOC_SRCS MyToolBarActions.h)<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; # we implement a pqConePanel.h for the ConeSource<br>
&gt;&gt;&gt; &gt;&gt;&gt; ADD_PARAVIEW_ACTION_GROUP(IFACES IFACE_SRCS CLASS_NAME<br>
&gt;&gt;&gt; &gt;&gt;&gt; MyToolBarActions<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;GROUP_NAME &quot;ToolBar/MyActions&quot;)<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; # create a plugin for this panel<br>
&gt;&gt;&gt; &gt;&gt;&gt; ADD_PARAVIEW_PLUGIN(GUIMyToolBar &quot;1.0&quot;<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;GUI_INTERFACES ${IFACES}<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOURCES MyToolBarActions.cxx ${MOC_SRCS}<br>
&gt;&gt;&gt; &gt;&gt;&gt; ${IFACE_SRCS})<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; ENDIF (QT4_FOUND)<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; ###########################################################################################<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; On Tue, Jan 6, 2009 at 4:14 PM, Michael Jackson<br>
&gt;&gt;&gt; &gt;&gt;&gt; &lt;<a href="mailto:mike.jackson@bluequartz.net">mike.jackson@bluequartz.net</a>&gt; wrote:<br>
&gt;&gt;&gt; &gt;&gt;&gt; IF (DEFINED ParaView_BINARY_DIR)<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;INCLUDE(${ParaView_BINARY_DIR}/ParaViewConfig.cmake)<br>
&gt;&gt;&gt; &gt;&gt;&gt; ELSE (DEFINED ParaView_BINARY_DIR)<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;INCLUDE($ENV{ParaView_DIR}/ParaViewConfig.cmake)<br>
&gt;&gt;&gt; &gt;&gt;&gt; ENDIF (DEFINED ParaView_BINARY_DIR)<br>
&gt;&gt;&gt; &gt;&gt;&gt; PROJECT(RoboMetClientPlugin)<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; FIND_PACKAGE(Qt4)<br>
&gt;&gt;&gt; &gt;&gt;&gt; IF(QT4_FOUND)<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;INCLUDE(${QT_USE_FILE})<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;#-- All your Qt4 dependent code in here.<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; ################################################CMAKELists<br>
&gt;&gt;&gt; &gt;&gt;&gt; .txt#################<br>
&gt;&gt;&gt; &gt;&gt;&gt; # create a plugin that implements an object panel for a source proxy<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; QT4_WRAP_CPP(MOC_SRCS MyToolBarActions.h)<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; # we implement a pqConePanel.h for the ConeSource<br>
&gt;&gt;&gt; &gt;&gt;&gt; ADD_PARAVIEW_ACTION_GROUP(IFACES IFACE_SRCS CLASS_NAME<br>
&gt;&gt;&gt; &gt;&gt;&gt; MyToolBarActions<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;GROUP_NAME &quot;ToolBar/MyActions&quot;)<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; # create a plugin for this panel<br>
&gt;&gt;&gt; &gt;&gt;&gt; ADD_PARAVIEW_PLUGIN(GUIMyToolBar &quot;1.0&quot;<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;GUI_INTERFACES ${IFACES}<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOURCES MyToolBarActions.cxx ${MOC_SRCS}<br>
&gt;&gt;&gt; &gt;&gt;&gt; ${IFACE_SRCS})<br>
&gt;&gt;&gt; &gt;&gt;&gt; #############################################ENDIF (QT4_FOUND)<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; _________________________________________________________<br>
&gt;&gt;&gt; &gt;&gt;&gt; Mike Jackson &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:mike.jackson@bluequartz.net">mike.jackson@bluequartz.net</a><br>
&gt;&gt;&gt; &gt;&gt;&gt; BlueQuartz Software &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.bluequartz.net" target="_blank">www.bluequartz.net</a><br>
&gt;&gt;&gt; &gt;&gt;&gt; Principal Software Engineer &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Dayton, Ohio<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; On Jan 6, 2009, at 4:02 PM, Jorge Mario Mazo wrote:<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; Hi there and thanks<br>
&gt;&gt;&gt; &gt;&gt;&gt; since I&#39;m very new to the paraview and cmake build workd, could you<br>
&gt;&gt;&gt; &gt;&gt;&gt; tell<br>
&gt;&gt;&gt; &gt;&gt;&gt; me where should I put that<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; I&#39;m trying to compile the GUITollbar example<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; ################################################CMAKELists.txt#################<br>
&gt;&gt;&gt; &gt;&gt;&gt; # create a plugin that implements an object panel for a source proxy<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; QT4_WRAP_CPP(MOC_SRCS MyToolBarActions.h)<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; # we implement a pqConePanel.h for the ConeSource<br>
&gt;&gt;&gt; &gt;&gt;&gt; ADD_PARAVIEW_ACTION_GROUP(IFACES IFACE_SRCS CLASS_NAME<br>
&gt;&gt;&gt; &gt;&gt;&gt; MyToolBarActions<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;GROUP_NAME &quot;ToolBar/MyActions&quot;)<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; # create a plugin for this panel<br>
&gt;&gt;&gt; &gt;&gt;&gt; ADD_PARAVIEW_PLUGIN(GUIMyToolBar &quot;1.0&quot;<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;GUI_INTERFACES ${IFACES}<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOURCES MyToolBarActions.cxx ${MOC_SRCS}<br>
&gt;&gt;&gt; &gt;&gt;&gt; ${IFACE_SRCS})<br>
&gt;&gt;&gt; &gt;&gt;&gt; #############################################<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; wich is located in<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; /Users/jmazo/Desktop/fofo/ParaView-3.4.0/Examples/Plugins/GUIToolBar<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; #########################<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; On Tue, Jan 6, 2009 at 3:14 PM, Michael Jackson<br>
&gt;&gt;&gt; &gt;&gt;&gt; &lt;<a href="mailto:mike.jackson@bluequartz.net">mike.jackson@bluequartz.net</a>&gt; wrote:<br>
&gt;&gt;&gt; &gt;&gt;&gt; You probably want something like:<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; IF (DEFINED ParaView_BINARY_DIR)<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;INCLUDE(${ParaView_BINARY_DIR}/ParaViewConfig.cmake)<br>
&gt;&gt;&gt; &gt;&gt;&gt; ELSE (DEFINED ParaView_BINARY_DIR)<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;INCLUDE($ENV{ParaView_DIR}/ParaViewConfig.cmake)<br>
&gt;&gt;&gt; &gt;&gt;&gt; ENDIF (DEFINED ParaView_BINARY_DIR)<br>
&gt;&gt;&gt; &gt;&gt;&gt; PROJECT(RoboMetClientPlugin)<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; FIND_PACKAGE(Qt4)<br>
&gt;&gt;&gt; &gt;&gt;&gt; IF(QT4_FOUND)<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;INCLUDE(${QT_USE_FILE})<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;#-- All your Qt4 dependent code in here.<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; ENDIF (QT4_FOUND)<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; _________________________________________________________<br>
&gt;&gt;&gt; &gt;&gt;&gt; Mike Jackson &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:mike.jackson@bluequartz.net">mike.jackson@bluequartz.net</a><br>
&gt;&gt;&gt; &gt;&gt;&gt; BlueQuartz Software &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.bluequartz.net" target="_blank">www.bluequartz.net</a><br>
&gt;&gt;&gt; &gt;&gt;&gt; Principal Software Engineer &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Dayton, Ohio<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; On Jan 6, 2009, at 1:03 PM, Jorge Mario Mazo wrote:<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; Hi there<br>
&gt;&gt;&gt; &gt;&gt;&gt; I&#39;m very new to paraview, I managed to compile paraview on linux and<br>
&gt;&gt;&gt; &gt;&gt;&gt; mac<br>
&gt;&gt;&gt; &gt;&gt;&gt; but when I try to compile a plugin y get the infamous Unknown CMake<br>
&gt;&gt;&gt; &gt;&gt;&gt; command &quot;QT4_WRAP_CPP&quot;. error.<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; I read on this list that I have to setup the variable<br>
&gt;&gt;&gt; &gt;&gt;&gt; QT_QMAKE_EXECUTABLE<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; the problem is that I dont know how and were to set it on<br>
&gt;&gt;&gt; &gt;&gt;&gt; /Applications/CMake<br>
&gt;&gt;&gt; &gt;&gt;&gt; 2.6-2.app/Contents/share/cmake-2.6/Modules/FindQt4.cmake<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; like this<br>
&gt;&gt;&gt; &gt;&gt;&gt; SET(QT_QMAKE_EXECUTABLE /usr/bin/qmake-4.3)<br>
&gt;&gt;&gt; &gt;&gt;&gt; &nbsp;at the end of the file<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; but still does not work<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; one problem is that man cmake skills are very near to 0<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; any help would be appreciate it.<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; qmake -v<br>
&gt;&gt;&gt; &gt;&gt;&gt; QMake version 2.01a<br>
&gt;&gt;&gt; &gt;&gt;&gt; Using Qt version 4.3.5 in /Library/Frameworks<br>
&gt;&gt;&gt; &gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; &gt;&gt;&gt; ParaView mailing list<br>
&gt;&gt;&gt; &gt;&gt;&gt; <a href="mailto:ParaView@paraview.org">ParaView@paraview.org</a><br>
&gt;&gt;&gt; &gt;&gt;&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; &gt;&gt;&gt; ParaView mailing list<br>
&gt;&gt;&gt; &gt;&gt;&gt; <a href="mailto:ParaView@paraview.org">ParaView@paraview.org</a><br>
&gt;&gt;&gt; &gt;&gt;&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; &gt;&gt; ParaView mailing list<br>
&gt;&gt;&gt; &gt;&gt; <a href="mailto:ParaView@paraview.org">ParaView@paraview.org</a><br>
&gt;&gt;&gt; &gt;&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt;&gt; &gt; ParaView mailing list<br>
&gt;&gt;&gt; &gt; <a href="mailto:ParaView@paraview.org">ParaView@paraview.org</a><br>
&gt;&gt;&gt; &gt; <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; ParaView mailing list<br>
&gt;&gt; <a href="mailto:ParaView@paraview.org">ParaView@paraview.org</a><br>
&gt;&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
&gt;<br>
&gt;<br>
</div></div></blockquote></div><br>