Re: [CMake] InstallRequiredSystemLibraries Comment

2011-01-05 Thread Michael Jackson
Well DUH on me for that one. Thanks! ___ Mike Jackson www.bluequartz.net On Jan 5, 2011, at 2:39 PM, David Partyka wrote: > You override this behavior by setting CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP > to ON and then

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) INCLUDE(InstallR

[CMake] InstallRequiredSystemLibraries Comment

2011-01-05 Thread Michael Jackson
>From the CMake 2.8.3 release I am using inside the >InstallRequiredSystemLibraries.cmake file all the way at the bottom is this: IF(WIN32) INSTALL_PROGRAMS(/bin ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS}) ELSE(WIN32) INSTALL_PROGRAMS(/lib ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS}) E