Re: [CMake] Debug libraries

2008-07-28 Thread Leopold Palomo Avellaneda
A Dilluns 28 Juliol 2008, Mike Arthur va escriure: > On Monday 28 July 2008 19:14:51 Leopold Palomo-Avellaneda wrote: > > One thing that i have not be able to solve is that when I create the MS > > Visual Studio Project, in the Debug option, the Qt libraries are the > > debug ones (with d) and in t

[CMake] 2.6.1 RC12 add_subdirectory(xxx EXCLUDE_FROM_ALL) problems

2008-07-28 Thread temp
> Ross, Thomas wrote: > > Hello List! > > > > I was planning to switch a project from CMake 2.4.8 to CMake 2.6.1 when > > it hits final and was trying out the newest RC12 to see if it works for > > me so far. > > > > So what am I doing... > > > > I have an "add_subdirectory(3rdParty EXCLUDE_FROM

Re: [CMake] Debug libraries

2008-07-28 Thread Mike Arthur
On Monday 28 July 2008 19:14:51 Leopold Palomo-Avellaneda wrote: > One thing that i have not be able to solve is that when I create the MS > Visual Studio Project, in the Debug option, the Qt libraries are the debug > ones (with d) and in the release are the "normal" (without d). However, I > could

[CMake] Debug libraries

2008-07-28 Thread Leopold Palomo-Avellaneda
Hi, I'm not a windows user and now, sadly, I have to develop an application with Visual Studio 2005. I'm porting an application that use OpenGL, Coin3d, SoQt and Qt4.4. I have created the respective FindSoQt and FindCoin that reports me the libraries with the two versions (debug and release).

Re: [CMake] FW: cmake newbie questions

2008-07-28 Thread John Drescher
> You are using the visual studio generator or it would not be creating a dsw. >Use the "Unix Makefiles" generator instead. > My guess is that he is trying to use both the visual studio generator to make a visual studio project to edit the source code in and then run the make file generator to

Re: [CMake] FW: cmake newbie questions

2008-07-28 Thread Bill Hoffman
Phil Smith wrote: OK, I've gotten the compiler happy, I think, but cmake still whines. It's calling my BAT file that invokes the actual compiler; but it says "No rule to make target `/MAKE'. Stop."?! C:\Documents and Settings\Voltage\svn\Toolkit\trunk\vtk-core>cmake . -- Check for working C co

Re: [CMake] FW: cmake newbie questions

2008-07-28 Thread Phil Smith
OK, I've gotten the compiler happy, I think, but cmake still whines. It's calling my BAT file that invokes the actual compiler; but it says "No rule to make target `/MAKE'. Stop."?! C:\Documents and Settings\Voltage\svn\Toolkit\trunk\vtk-core>cmake . -- Check for working C compiler: C:/Program F

Re: [CMake] Mixing C and Fortran object in same library with MSVC

2008-07-28 Thread Bill Hoffman
Martin Apel wrote: Hi, I am trying to generate a DLL on Windows, which contains objects from C source files as well as Fortran source files. When using the nmake generator of cmake 2.6.0, everything works fine, as well as under Linux. However when using the Visual Studio 8 generator, only the

Re: [CMake] CPack Components with NSIS and using InstallRequiredSystemLibraries

2008-07-28 Thread Doug Gregor
On Mon, Jul 28, 2008 at 10:39 AM, Thomas Moelhave <[EMAIL PROTECTED]> wrote: > I was actually in the progress of changing everything to the cpack_add_ > commands when your email arrived. > However, adding Unspecified to CPACK_COMPONENTS_ALL (as per your > suggestion) did the trick. Thank you! Okay

Re: [CMake] CPack Components with NSIS and using InstallRequiredSystemLibraries

2008-07-28 Thread Thomas Moelhave
> > Hmm, it does work using the example project here: > > http://www.cmake.org/cgi-bin/viewcvs.cgi/Tests/CPackComponents/?root=CMake > > and adding > > include(InstallRequiredSystemLibraries) > > before > > include(CPack) > > > > I guess I must be doing _something_ wrong, > > Maybe, maybe not; we

Re: [CMake] CPack Components with NSIS and using InstallRequiredSystemLibraries

2008-07-28 Thread Doug Gregor
On Mon, Jul 28, 2008 at 10:14 AM, Thomas Moelhave <[EMAIL PROTECTED]> wrote: > Hmm, it does work using the example project here: > http://www.cmake.org/cgi-bin/viewcvs.cgi/Tests/CPackComponents/?root=CMake > and adding > include(InstallRequiredSystemLibraries) > before > include(CPack) > > I guess

Re: [CMake] CPack Components with NSIS and using InstallRequiredSystemLibraries

2008-07-28 Thread Thomas Moelhave
Hmm, it does work using the example project here: http://www.cmake.org/cgi-bin/viewcvs.cgi/Tests/CPackComponents/?root=CMake and adding include(InstallRequiredSystemLibraries) before include(CPack) I guess I must be doing _something_ wrong, although I still get confused by the fact that it works

[CMake] Mixing C and Fortran object in same library with MSVC

2008-07-28 Thread Martin Apel
Hi, I am trying to generate a DLL on Windows, which contains objects from C source files as well as Fortran source files. When using the nmake generator of cmake 2.6.0, everything works fine, as well as under Linux. However when using the Visual Studio 8 generator, only the C sources are comp

Re: [CMake] CPack Components with NSIS and using InstallRequiredSystemLibraries

2008-07-28 Thread Thomas Moelhave
> > I've enjoyed using the new CPack component support[1] to generate funky > > NSIS installers. However, the generated NSIS installer does not contain > > the required MSVC (in my case, MSVC 9) redist dll's fuond by > > InstallRequiredSystemLibraries. > > The files are found correctly and are, in

Re: [CMake] CPack Components with NSIS and using InstallRequiredSystemLibraries

2008-07-28 Thread Doug Gregor
On Mon, Jul 28, 2008 at 8:41 AM, Thomas Moelhave <[EMAIL PROTECTED]> wrote: > I've enjoyed using the new CPack component support[1] to generate funky > NSIS installers. However, the generated NSIS installer does not contain > the required MSVC (in my case, MSVC 9) redist dll's fuond by > InstallReq

[CMake] CPack Components with NSIS and using InstallRequiredSystemLibraries

2008-07-28 Thread Thomas Moelhave
Hi there, I've enjoyed using the new CPack component support[1] to generate funky NSIS installers. However, the generated NSIS installer does not contain the required MSVC (in my case, MSVC 9) redist dll's fuond by InstallRequiredSystemLibraries. The files are found correctly and are, in fact, inc

Re: [CMake] CMake CVS + CPack + NSIS - Installing files with spaces

2008-07-28 Thread Doug Gregor
On Fri, Jul 25, 2008 at 7:56 PM, Gregory Peele ARA/CFD <[EMAIL PROTECTED]> wrote: > I'm really pleased with the component-based CPack installer with the NSIS > backend, and am currently using the July 24th CVS snapshot of CMake to take > advantage of it. Today I ran into a puzzler though. Some