Hi All,
I'm trying to compile from the cmd line on my ppc OSX (10.4.11) and am not making much progress.
I must be doing something seriously wrong as it seems there are no makefiles!?
I've tried using both the distributed tarball and the svn tree; both have the same problem for me.
I am following the steps for compiling as posted on the wiki.
This is the error I get when running make.
[raleigh@positron src]$ make
make: *** No targets specified and no makefile found. Stop.
I have QT 4.4.1 as installed from the TrollTech Qt/Mac Open Source Edition installer (qt-mac-opensource-4.4.1.dmg)
[raleigh@positron src]$ qmake --version
QMake version 2.01a
Using Qt version 4.4.1 in /Library/Frameworks
I've built lib3ds with no problems (although I did not build a universal binary, just for the ppc arch).
I've got both glew and vcg srcs in my tree.
I'm mirroring the directory tree recommend on the wiki.
.
|-- MeshLabSrc_v111.tgz
|-- code
| `-- lib
| |-- glew
| |-- glew-1.5.0-src.tgz
| `-- lib3ds-1.3.0
|-- how_to_compile.txt
|-- lib3ds-1.3.0.zip
|-- meshlab
| |-- docs
| |-- src
| `-- web
`-- sf
|-- vcg
`-- wrap
I run qmake and it completes with out errors
[raleigh@positron src]$ pwd
/Users/raleigh/projects/devel/meshlab/src
[raleigh@positron src]$ qmake -recursive meshlabv11.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlab/meshlab.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/meshlabpluginsv11.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/meshfilter/meshfilter.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/baseio/baseio.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/meshio/meshio.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/colladaio/colladaio.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/epoch_io/epoch_io.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/u3d_io/u3d_io.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/meshrender/meshrender.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/cleanfilter/cleanfilter.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/filter_ao/filter_ao.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/filter_poisson/filter_poisson.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/meshcolorize/meshcolorize.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/meshselect/meshselect.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/meshdecorate/meshdecorate.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/meshedit/meshedit.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/editslice/editslice.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/editpaint/editpaint.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/editalign/editalign.pro
Reading /Users/raleigh/projects/devel/meshlab/src/meshlabplugins/editmeasure/editmeasure.pro
Reading /Users/raleigh/projects/devel/meshlab/src/sampleplugins/sampleedit/sampleedit.pro
Reading /Users/raleigh/projects/devel/meshlab/src/sampleplugins/samplefilter/samplefilter.pro
Reading /Users/raleigh/projects/devel/meshlab/src/sampleplugins/samplefilterdoc/samplefilterdoc.pro
Reading /Users/raleigh/projects/devel/meshlab/src/sampleplugins/sampledecoration/sampledecoration.pro
Reading /Users/raleigh/projects/devel/meshlab/src/sampleplugins/filterborder/filterborder.pro
Reading /Users/raleigh/projects/devel/meshlab/src/sampleplugins/filtergeodesic/filtergeodesic.pro
Reading /Users/raleigh/projects/devel/meshlab/src/sampleplugins/filtercreateiso/filtercreateiso.pro
But then I try and run make and it of course fails because the are no Makefiles :-(
So what I'm I missing and/or doing wrong?
thanks,
-raleigh
|