<html><head><meta http-equiv="Content-Type" content="text/html charset=iso-8859-1"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Casey<div><br></div><div>Hi, yes I wasn't sure how to post but my initial target is kiwiviewer on iPad and there does not seem to be much iOS traffic on the vtk site.</div><div><br></div><div>Your make command made the issues clear.</div><div><br></div><div>So far I have made the following changes to the project</div><div><br></div><div>Added iOS7 as a target SDK</div><div>installed the command line tools for xcode5 preview5</div><div>installed boost to provide C++11 headers</div><div>VES/src/ves/./vesSharedPtr.h changed  #import <tr1/memory> to <memory></div><div>changed other std::tr1:: references to std::</div><div><br></div><div>But I am stuck with a C++11 operator overload error, here is the relevant part of the log (note originally the source was an inline if, but I changed to a standard if/else block for testing but the error is the same in the initial if test).</div><div><br></div><div>Again any pointers appreciated.</div><div><br></div><div><br></div><div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: error: use of overloaded operator '!=' is ambiguous (with operand types 'std::shared_ptr<vesViewport>' and 'int')</div><div>    if(camera.viewport() != 0)</div><div>       ~~~~~~~~~~~~~~~~~ ^  ~</div><div>/usr/bin/../lib/c++/v1/memory:4787:1: note: candidate function [with _Tp = vesViewport]</div><div>operator!=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT</div><div>^</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(int, int)</div><div>    if(camera.viewport() != 0)</div><div>                         ^</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned __int128, int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long long, int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long, int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(float, int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned int, int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(__int128, int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long long, int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long, int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(int, unsigned __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(int, unsigned long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(int, unsigned long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(int, unsigned int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(int, __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(int, long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(double, int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(int, long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(int, long double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(int, double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(int, float)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long double, int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(double, unsigned __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long double, float)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long double, double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long double, long double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(double, unsigned long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long double, long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long double, long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long double, __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long double, unsigned int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long double, unsigned long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long double, unsigned long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long double, unsigned __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(double, unsigned long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(double, unsigned int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(double, __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(double, long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(double, long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(double, long double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(double, double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(double, float)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(float, unsigned __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(float, unsigned long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(float, unsigned long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long, float)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long, double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long, long double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(float, unsigned int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long, long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long, long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long, __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long, unsigned int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long, unsigned long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long, unsigned long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long, unsigned __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long long, float)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long long, double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long long, long double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(float, __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long long, long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long long, long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long long, __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long long, unsigned int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long long, unsigned long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long long, unsigned long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(long long, unsigned __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(__int128, float)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(__int128, double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(__int128, long double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(float, long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(__int128, long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(__int128, long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(__int128, __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(__int128, unsigned int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(__int128, unsigned long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(__int128, unsigned long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(__int128, unsigned __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned int, float)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned int, double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned int, long double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(float, long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned int, long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned int, long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned int, __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned int, unsigned int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned int, unsigned long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned int, unsigned long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned int, unsigned __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long, float)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long, double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long, long double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(float, long double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long, long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long, long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long, __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long, unsigned int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long, unsigned long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long, unsigned long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long, unsigned __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long long, float)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long long, double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long long, long double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(float, double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long long, long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long long, long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long long, __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long long, unsigned int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long long, unsigned long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long long, unsigned long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned long long, unsigned __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned __int128, float)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned __int128, double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned __int128, long double)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(float, float)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned __int128, long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned __int128, long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned __int128, __int128)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned __int128, unsigned int)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned __int128, unsigned long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned __int128, unsigned long long)</div><div>/Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in candidate operator!=(unsigned __int128, unsigned __int128)</div></div><div><br></div><div><br></div><div><div><div>On 23 Aug 2013, at 14:26, Casey Goodlett <<a href="mailto:casey.goodlett@kitware.com">casey.goodlett@kitware.com</a>> wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div dir="ltr"><div><div><div>Hi Andrew,<br><br></div>The VES list might be a better place for development questions.  I have not yet tried to compile for iOS 7 so I am not sure what the challenges are. <br><br></div>Is it possible that you can run a serial build using "make -j1 VERBOSE=1" so that the the end of the build log will contain the error log?<br>

<br></div>Thank you<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, Aug 23, 2013 at 8:23 AM, Andrew Reslan <span dir="ltr"><<a href="mailto:andrew.reslan@mac.com" target="_blank">andrew.reslan@mac.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I am trying to build VES/VTK for an iOS 7 target platform.<br>
<br>
The build makes good progress but fails when building the libs, from googling I think the issue is related to invalid linker flags, but I am not familiar with cmake and I don't know which script was running at the time of failure.<br>


<br>
Any pointers as to where to look would be appreciated.<br>
<br>
Andy<br>
<br>
Here are the last few lines of output from the build:<br>
<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftincrem.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftlcdfil.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftlist.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftlzw.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftmac.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftmm.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftmodapi.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftmoderr.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftotval.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftoutln.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftpfr.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftrender.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftsizes.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftsnames.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftstroke.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftsynth.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftsystem.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/fttrigon.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/fttypes.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftwinfnt.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftxf86.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/t1tables.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ttnameid.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/tttables.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/tttags.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ttunpat.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/config/ftheader.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/config/ftmodule.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/config/ftoption.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/config/ftstdlib.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/config/ftconfig.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/lib/cmake/vtk-6.0/Modules/vtkRenderingFreeType.cmake<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/lib/libvtkRenderingFreeType-6.0.a<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkFreeTypeStringToImage.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkFreeTypeTools.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkVectorText.h<br>
-- Installing: /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkRenderingFreeTypeModule.h<br>
[ 40%] Completed 'vtk-ios-simulator'<br>
[ 48%] Built target vtk-ios-simulator<br>
make: *** [all] Error 2<br>
_______________________________________________<br>
Kiwiviewer mailing list<br>
<a href="mailto:Kiwiviewer@public.kitware.com">Kiwiviewer@public.kitware.com</a><br>
<a href="http://public.kitware.com/cgi-bin/mailman/listinfo/kiwiviewer" target="_blank">http://public.kitware.com/cgi-bin/mailman/listinfo/kiwiviewer</a><br>
</blockquote></div><br><br clear="all"><br>-- <br>Casey B. Goodlett, Ph.D.<br>R&D Engineer<br>Kitware, Inc. - North Carolina Office<br><a href="http://www.kitware.com/">http://www.kitware.com</a><br>(919) 969-6990 x310
</div>
</blockquote></div><br></div></body></html>