Re: [CMake] Not matching versions of MSVC Runtime Libraries in Manifest

2011-08-09 Thread David Partyka
Very cool! +1 On Tue, Aug 9, 2011 at 3:28 PM, David Cole david.c...@kitware.com wrote: On Tue, Aug 9, 2011 at 3:27 PM, clin...@elemtech.com wrote: Here's my (not so complete) understanding... Public assemblies are searched before private ones.

Re: [cmake-developers] Bug fix requests for the *next* release of CMake...

2011-03-30 Thread David Partyka
When using external_project, if GIT_TAG is modified the entire source tree is removed and re-cloned causing a full rebuild of said project. http://cmake.org/Bug/view.php?id=11403 On Tue, Mar 29, 2011 at 1:56 PM, David Cole david.c...@kitware.com wrote: Hi all, Now that we have released CMake

Re: [CMake] [cmake-developers] Bug fix requests for the *next* release of CMake...

2011-03-30 Thread David Partyka
When using external_project, if GIT_TAG is modified the entire source tree is removed and re-cloned causing a full rebuild of said project. http://cmake.org/Bug/view.php?id=11403 On Tue, Mar 29, 2011 at 1:56 PM, David Cole david.c...@kitware.com wrote: Hi all, Now that we have released CMake

Re: [CMake] Why is ExternalProject trigger-happy about re-downloading source?

2011-03-09 Thread David Partyka
http://cmake.org/Bug/view.php?id=11403 On Wed, Mar 9, 2011 at 2:50 PM, kent williams nkwmailingli...@gmail.comwrote: I've been running into this every since we updated to CMake 2.8.4, but I don't know if it's revision specific. Sometimes if I change CMakeLists.txt in various directories so

Re: [cmake-developers] VS2010 fortran composer

2011-03-07 Thread David Partyka
I just tried this on a remote machine with the compiler and can confirm what John is seeing. That said. If you run msbuild on the top level solution you get a slightly more informative error. c:\Users\kitware\Documents\Visual Studio 2010\Projects\Console1msbuild Console1.sln Microsoft (R) Build

Re: [CMake] Cmake with Cray Fortran

2011-03-05 Thread David Partyka
FYI, if you want to build static on cray, Brad just checked in a fix into CMake yesterday that addresses -Bdynamic link flags showing up in the link line even though you're trying to build static, often resulting in your executable prefering to link against shared system libraries rather than

Re: [CMake] Any issues using CMAKE with virus control?

2011-01-06 Thread David Partyka
I've had problems using CMake's external project feature and Antivirus (on Windows 7). When external project would download a tarball and extract it, often it would fail because the realtime protection would still be holding on to some of the files. The compromise was to excluding realtime

Re: [CMake] Detecting fmpich

2011-01-06 Thread David Partyka
FindMPI is getting a major facelift for CMake 2.8.4 in which finding fortran related libraries/compilers is a new feature. Stay tuned! On Thu, Jan 6, 2011 at 9:23 AM, ycollette.nos...@free.fr wrote: Hello, Is it possible to detect fmpich using find_package(MPI) ? I haven't found any solution

Re: [CMake] Packaging on Windows with VS2008 and ZIP - Runtime Libraries Inclusion

2011-01-05 Thread David Partyka
This might be my fault If you're building a paraview app. I had SET (CMAKE_INSTALL_DEBUG_LIBRARIES ON) from a month ago that I didn't remove. I'll do that right now. On Wed, Jan 5, 2011 at 1:54 PM, Michael Jackson mike.jack...@bluequartz.net wrote: OK.So how do I NOT package them? So far they

Re: [CMake] Packaging on Windows with VS2008 and ZIP - Runtime Libraries Inclusion

2011-01-05 Thread David Partyka
at showing you when you somehow didn't include the msvc runtime dlls. -- Mike Jackson www.bluequartz.net On Jan 5, 2011, at 2:09 PM, David Partyka wrote: This might be my fault If you're building a paraview app. I had SET (CMAKE_INSTALL_DEBUG_LIBRARIES ON) from a month ago that I didn't

Re: [CMake] InstallRequiredSystemLibraries Comment

2011-01-05 Thread David Partyka
You override this behavior by setting CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP to ON and then providing your own install rules. See the following chunk from ParaView. # Add install rules for required system runtimes such as MSVCRxx.dll SET (CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP ON)