[CMake] Cmake 2.8.4 option command

2011-07-28 Thread Emrah Urhan
option on/off command does not apply changes until I delete generated CMakeCache.txt file. Is there a bug or something I miss? - Emrah URHAN

Re: [CMake] Cmake 2.8.4 option command

2011-07-28 Thread Emrah Urhan
I'm so sorry the version is 2.8.5... - Emrah URHAN - 2011/7/28 Emrah Urhan

Re: [CMake] Cmake 2.8.4 option command

2011-07-28 Thread David Cole
The option command establishes a CMake BOOL cache entry with the default value that you give it. Once it is in the cache, the cached value is used. The ON / OFF you give the command is just used as the initial default value for that cached entry. It's behaving as intended. HTH, David On Thu,

Re: [CMake] Fwd: CPACK/NSIS: Subfolders/components related generation issue

2011-07-28 Thread Laszlo Papp
Hi, Thanks for you guys, it helped a lot. :) We now have a good installer for testing purposes. Best Regards, Laszlo Papp ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html

Re: [CMake] Fwd: CPACK/NSIS: Subfolders/components related generation issue

2011-07-28 Thread Eric Noulard
2011/7/28 Laszlo Papp lp...@kde.org: Hi, Thanks for you guys, it helped a lot. :) We now have a good installer for testing purposes. You're welcome. May be you can take some time to update this Wiki Page http://www.cmake.org/Wiki/CMake:CPackWin32NewbiesChecklist with you experience with

Re: [CMake] Buggy CPack generator behaviour?

2011-07-28 Thread Bjørn Forsman
2011/7/27 Eric Noulard eric.noul...@gmail.com: 2011/7/27 Bjørn Forsman bjorn.fors...@gmail.com: Hi all, I wonder if I've hit some bugs in the CPack generators, specifically TGZ and DEB. They do not behave as I expect them to. What I expect them to do is to generate an archive of files that

Re: [CMake] Problem making vc project

2011-07-28 Thread Yuri Timenkov
It's really hard to find problem without having whole picture. I can only suggest printing debug information from your CMakeLists.txt with message() command. There could be problems with CUDA_COMPILE, it may return empty list for example, if cuda library isn't found for current platform/compiler.

[CMake] LIBRARY_OUTPUT_PATH for Dynamic and Static Libraries

2011-07-28 Thread Julien Dardenne
Hi, I compile my libraries into dynamic and static. I now wish to change the library path. If I am in static (folder : lib ) and dynamic (folder : dll). For now, i have this script : OPTION

Re: [CMake] Buggy CPack generator behaviour?

2011-07-28 Thread Eric Noulard
2011/7/28 Bjørn Forsman bjorn.fors...@gmail.com: Thanks a lot! With three lines in CMakeLists.txt I now get the same behaviour for 'make install' and the package generators: set(CPACK_INCLUDE_TOPLEVEL_DIRECTORY 0) # don't prepend package name etc. (for archive generators)

Re: [CMake] LIBRARY_OUTPUT_PATH for Dynamic and Static Libraries

2011-07-28 Thread Eric Noulard
2011/7/28 Julien Dardenne julien.darde...@technooliq.com Hi, I compile my libraries into dynamic and static. I now wish to change the library path. If I am in static (folder : lib ) and dynamic (folder : dll). For now, i have this script : OPTION (BUILD_SHARED_LIBS Build shared

Re: [CMake] Buggy CPack generator behaviour?

2011-07-28 Thread Bjørn Forsman
2011/7/28 Eric Noulard eric.noul...@gmail.com: 2011/7/28 Bjørn Forsman bjorn.fors...@gmail.com: Thanks a lot! With three lines in CMakeLists.txt I now get the same behaviour for 'make install' and the package generators: set(CPACK_INCLUDE_TOPLEVEL_DIRECTORY 0) # don't prepend package name

Re: [CMake] VS2010 and superbuild - Fwd: [Ctk-developers] VS2010 support

2011-07-28 Thread David Cole
The ExternalProject test in the CMake test suite passes on Visual Studio 2010. You can see all the variations of ExternalProject usage the test tries in this file:

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

2011-07-28 Thread Steven Velez
http://public.kitware.com/Bug/view.php?id=12299 ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at:

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

2011-07-28 Thread Jean-Christophe Fillion-Robin
Make sure http://cmake.org/gitweb?p=cmake.git;a=commit;h=702538eaa3315f3fcad9f1daea01e6a83928967bis integrated to CMake 2.8.6 Thanks Jc On Thu, Jul 28, 2011 at 8:23 PM, Steven Velez sbv1...@gmail.com wrote: http://public.kitware.com/Bug/view.php?id=12299

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

2011-07-28 Thread Jean-Christophe Fillion-Robin
http://public.kitware.com/Bug/view.php?id=11177 On Thu, Jul 28, 2011 at 8:32 PM, Jean-Christophe Fillion-Robin jchris.filli...@kitware.com wrote: Make sure http://cmake.org/gitweb?p=cmake.git;a=commit;h=702538eaa3315f3fcad9f1daea01e6a83928967bis integrated to CMake 2.8.6 Thanks Jc On

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

2011-07-28 Thread J Decker
On Thu, Jul 28, 2011 at 3:49 PM, David Cole david.c...@kitware.com wrote: Hi all, Replies requested. Short replies only. Read on. Just a short reply with bug numbers or links to the bugs is all we need here. Please move specific discussions into the bugs themselves or start a new thread to

[CMake] CMake QT4 toolbar icons disappear

2011-07-28 Thread James Sutherland
I have a QT4 application that I am building via CMake. In the build directory where the local application is built, it works fine. In the install directory, that application is missing all toolbar icons when it runs (but is otherwise functional). Any ideas what could be causing this? It must

Re: [CMake] Is it possible to call or include CMakeCache from another CMakeCache?

2011-07-28 Thread Michael Hertling
On 07/19/2011 05:50 PM, Kevyn-Alexandre Paré wrote: Hi David, thx for the reply see below. On 2011-07-19, at 6:41 AM, David Cole wrote: On Mon, Jul 18, 2011 at 3:51 PM, Kevyn-Alexandre Paré kap...@rogue-research.com wrote: Hi, Is it possible to call or include CMakeCache from another

Re: [CMake] Generating C++ code from Idl language with variable number of files as output

2011-07-28 Thread Michael Hertling
On 07/20/2011 03:00 PM, Clifford Yapp wrote: On Mon, Jul 18, 2011 at 8:42 AM, Valentin-Daniel Boca db...@eservicios.indracompany.com wrote: gen_code xxx.idl - xxxIdl.h, xxxIdl.cc, xWrappers.h and xxxWData.h So for every keyword struct there is one more file generated. The first three files

Re: [CMake] CMake QT4 toolbar icons disappear

2011-07-28 Thread clin...@elemtech.com
Sounds like your icons are in a format supported by a plugin, and the installation has missing that plugin. Clint - Reply message - From: James Sutherland james.sutherl...@utah.edu Date: Thu, Jul 28, 2011 8:01 pm Subject: [CMake] CMake QT4 toolbar icons disappear To: cmake

[Cmake-commits] CMake branch, next, updated. v2.8.5-1319-ge7b7cdb

2011-07-28 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via e7b7cdb9420db5eb8ef8a2339bfdc7d8714b30dc (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.5-1326-g9595082

2011-07-28 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via 9595082c76d9df43d722489434378aba6002f579 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.5-1329-g61df4ad

2011-07-28 Thread Clinton Stimpson
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via 61df4ad584c7fe193628cd06f709b9008e77840d (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.5-75-g5ef20b2

2011-07-28 Thread KWSys Robot
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, master has been updated via 5ef20b2dc54474ceba1c81a75e8c3fc558d505fa (commit) from