<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; color: rgb(0, 0, 0); font-size: 14px; font-family: Calibri, sans-serif; ">
<div>
<div>I've been using Cmake to create a fixup bundle on Win32. Unfortunately, the VTK libraries are completely missing.&nbsp;</div>
<div><br>
</div>
<div>Cmake appears to have the correct paths to these dependencies, but looks for .dll's instead of .lib's.&nbsp;</div>
<div><br>
</div>
<div>When I try to build the INSTALL project in Visual Studio, I get the following output:</div>
<div><br>
</div>
<div>
<div>&gt;EXEC : warning : cannot resolve item 'vtkGUISupportQt-6.0.dll'</div>
<div>3&gt; &nbsp;</div>
<div>3&gt; &nbsp; &nbsp;possible problems:</div>
<div>3&gt; &nbsp; &nbsp; &nbsp;need more directories?</div>
<div>3&gt; &nbsp; &nbsp; &nbsp;need to use InstallRequiredSystemLibraries?</div>
<div>3&gt; &nbsp; &nbsp; &nbsp;run in install tree instead of build tree?</div>
<div>3&gt; &nbsp;</div>
<div>3&gt;EXEC : -- warning : gp_resolved_file_type non-absolute file 'vtkGUISupportQt-6.0.dll' returning type 'other' -- possibly incorrect</div>
</div>
<div><br>
</div>
<div>Here's what I have in my CmakeLists.txt file:</div>
<div><br>
</div>
<div>
<div>&nbsp; &nbsp; if(WIN32)</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; set(DEPENDENCY_DIRS ${QT_BINARY_DIR} ${VTK_LIBRARY_DIRS})</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; include(InstallRequiredSystemLibraries)</div>
<div>&nbsp; &nbsp; endif()</div>
</div>
<div><br>
</div>
<div>
<div>&nbsp; &nbsp; INSTALL(CODE &quot;</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; file(GLOB_RECURSE QTPLUGINS \&quot;\${CMAKE_INSTALL_PREFIX}/${PLUGIN_DEST_DIR}/plugins/*${CMAKE_SHARED_LIBRARY_SUFFIX}\&quot;)</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; include(BundleUtilities)</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; fixup_bundle(\&quot;${APPS}\&quot; \&quot;\${QTPLUGINS}\&quot; \&quot;${DEPENDENCY_DIRS}\&quot;)</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &quot; COMPONENT Runtime)</div>
</div>
<div><br>
</div>
<div>The problem also happens for a static win32 library for gdal, but I figured the VTK community would have some experience with this.</div>
<div><br>
</div>
<div>Thanks if you do!</div>
<div><br>
</div>
<div>-Aaron</div>
</div>
</body>
</html>