[CMake] Issue with Visual Studio 8 2005 Win64

2008-07-22 Thread Malhotra, Anupam
Hi I created a solution for Visual Studio 8 2005 Win64 using CMake. The sln has various projects all of which are to be built using VS 2005 for x64. When the sln is opened, the x64 configuration is selected by default for all projects.I have set some project dependencies (say project x is depen

[CMake] can a dependency be added to a specific test (CXX Test)?

2008-07-22 Thread Edward Flanigan
I am trying to create a test. The traditional way uses the command : add_test (simpleTest executable) I want to know if there is any way to add a dependency to a specific test? CMake does not recognize simpleTest as a target. For my application I am trying to use cxx test. A script (executabl

Re: [CMake] Installing OSX Frameworks

2008-07-22 Thread Shead, Timothy
On 7/22/08 10:56 AM, "Mike Arthur" <[EMAIL PROTECTED]> wrote: > Has anyone worked out a nice way of installing the needed OSX frameworks into > my application bundle? If you use the (bleeding-edge) CPack bundle generator, you can install frameworks (or any other dependency) using normal CMake ins

Re: [CMake] CMAKE equivalent of qmake's MOC_DIR

2008-07-22 Thread Andreas Pakulat
On 22.07.08 14:02:06, David Boosalis wrote: > Hi > > The qmake variable MOC_DIR allows you to define where you want the generated > moc flies to reside.  I like to use it as it keeps my source directory clean. > > Is there a similar variable with cmake Thats not really needed with cmake, beca

[CMake] CMAKE equivalent of qmake's MOC_DIR

2008-07-22 Thread David Boosalis
Hi The qmake variable MOC_DIR allows you to define where you want the generated moc flies to reside.  I like to use it as it keeps my source directory clean. Is there a similar variable with cmake Thanks for any info David ___ CMake mailing list C

Re: [CMake] CPACK installation path configuration

2008-07-22 Thread Hans Johnson
Hello, I¹ve been trying to figure out how to use CPACK to distribute my package as a dmg, rpm, and tar.gz files. I¹ve been able to successfully create the files, but the locations where the resulting files are being put are not as desired. I¹d like the resulting binary to be installed in /opt/BR

[CMake] cmake newbie questions

2008-07-22 Thread Phil Smith
Disclaimer: I'm new to cmake, and mostly new to make, for that matter (I come from one of those Other Platforms that don't use make). I'm trying to use a different C compiler (the Dignus cross-compiler for z/OS) to compile an existing product on Windows XP. I've installed cmake and GNU make, as

Re: [CMake] Installing OSX Frameworks

2008-07-22 Thread Mike Jackson
There are lots of "home grown" solutions. I have one the copies Qt Frameworks/Dylibs into the App bundle if you are interested. Take a look at http://titanium.imts.us/viewvc/Task_7/MXATools/ Resources/OSX_Tools/ Probably not as "slick" as it should be but should be easy/straight forward to

[CMake] CPACK_NSIS_CREATE_ICONS incorrect

2008-07-22 Thread Mike Arthur
For some reason for me CPACK_NSIS_CREATE_ICONS is set incorrectly when using an NSIS installer. My application is in c:\Program Files\Mendeley\Mendeley.exe but it tries to point the start menu shortcut to c:\Program Files\Mendeley\bin\Mendeley.exe. What am I doing wrong? Find my CPack configur

[CMake] Installing OSX Frameworks

2008-07-22 Thread Mike Arthur
Has anyone worked out a nice way of installing the needed OSX frameworks into my application bundle? -- Cheers, Mike Arthur ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

[CMake] PDB file placement

2008-07-22 Thread Filip Konvička
Hi, cmake works nice so far :-) Thanks guys! Recently my MSVC builds have been quite slow, so I decided to move the PDB files to a ramdisk. (This really speeds things up, I'm using a quad-core CPU so mspdbsrv.exe gets in the way quite often.) I found out that setting the PDB pathname in CMak

Re: [CMake] find_package New features request

2008-07-22 Thread Alin M Elena
Hi, > In addition, the packager of the reference blas, at least on SUSE > linux, made the unfortunate decision to name the reference blas shared > and static libraries by the exact same name, libblas. Is it possible > with the 2.6 series of cmake to enforce that the correct version of > the blas

Re: [CMake] find_package New features request

2008-07-22 Thread John Doe
It seems that most packages that I use do not reference a blas header directly. They forward declare the functions they need directly, and add the appropriate suffix (_) to account for whether the blas is fortran or c. This requires user knowledge of the calling conventions of the blas library th

Re: [CMake] CPACK_SET_DESTDIR

2008-07-22 Thread Bill Hoffman
Mike Arthur wrote: What does CPACK_SET_DESTDIR actually do? I can't find it documented anywhere but it seems needed for some CPack generators. CPack seems great but it's very poorly documented compared to CMake, even when using the wiki. By default CPack works by setting CMAKE_INSTALL_PRE

[CMake] ANN: Kitware Is Hiring

2008-07-22 Thread Bill Hoffman
Kitware, Inc. is currently seeking highly motivated software engineers to fill a variety of positions. + Computer Vision Software Engineer - strong software skills (C++ or Java), works with Technical Leadership to develop leading edge computer vision software solutions. MS or BS preferred, wit

[CMake] CPACK_SET_DESTDIR

2008-07-22 Thread Mike Arthur
What does CPACK_SET_DESTDIR actually do? I can't find it documented anywhere but it seems needed for some CPack generators. CPack seems great but it's very poorly documented compared to CMake, even when using the wiki. -- Cheers, Mike Arthur ___ CM

[CMake] Testing values

2008-07-22 Thread Stephen Quinney
I'm seeing some odd behaviour and I wonder if this is just me doing things the wrong way or whether this is a genuine bug. Here's a snippet which shows the problem: IF(${FOO}) MESSAGE("Test A: true") ELSE(${FOO}) MESSAGE("Test A: false") ENDIF(${FOO}) IF(FOO) MESSAGE("Test B: true") ELSE(