[cmake-developers] [CMake 0012940]: FindBoost.cmake cannot find libraries built with clang on Darwin.

2012-02-07 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=12940 == Reported By:David Rogers Assigned To:

[CMake] Again multiple subdirs

2012-02-07 Thread justin
Hi, and just in the beginning, I am sorry if this was asked thousands of times before, but I wasn't able to find it. The situation is following src -- common -- common.c | a -- a.c | b -- b.c add_library (a ${project_SOURCE_DIR}/common/common

Re: [CMake] Default Generator to use

2012-02-07 Thread Eric Noulard
2012/2/7 Sarnath K - ERS, HCLTech k_sarn...@hcl.com: Hello Friends, How do I specify the default generator that CMAKE should use when invoked without the “-G” option? I am on Windows. I saw an old thread on this. But I am not sure if any support was added later on. Is there a REGISTRY

Re: [CMake] How to submit patches?

2012-02-07 Thread Eric Noulard
2012/2/7 Rolf Eike Beer e...@sf-mail.de: Am Montag, 6. Februar 2012, 19:12:27 schrieb Michael Pechner: Is this the correct forum? cmake-develop...@cmake.org would be the right place. Or open a bug report at http://cmake.org/Bug and attach it there. May be browse/search the bug tracker before

Re: [CMake] How to submit patches?

2012-02-07 Thread Sarnath K - ERS, HCLTech
I have found Visual Studio (generated via CMAKE) smart enough to handle these double-compilation cases. That's my vague memory. You may check it out. Are you on windows? ::DISCLAIMER::

Re: [CMake] Again multiple subdirs

2012-02-07 Thread Rolf Eike Beer
add_library (a ${project_SOURCE_DIR}/common/common ${project_SOURCE_DIR}/a/a} add_library (b ${project_SOURCE_DIR}/common/common ${project_SOURCE_DIR}/b/b} This results in a double compilation of common.c. One time for liba and the other one for libb. What is the

Re: [CMake] Again multiple subdirs

2012-02-07 Thread Andreas Pakulat
On 07.02.12 08:55:47, justin wrote: Hi, and just in the beginning, I am sorry if this was asked thousands of times before, but I wasn't able to find it. The situation is following src -- common -- common.c | a -- a.c | b -- b.c add_library (a

Re: [CMake] Default Generator to use

2012-02-07 Thread Sarnath K - ERS, HCLTech
Hello Eric, We have a case where 2 teams are working on a common source tree. One team is using Visual Studio 9 2008 and the other Visual Studio 10 Our platform is Windows7 64-bit. We have a tool in our project that gets added as an External Project to the main CMAKE project. This tool needs to

Re: [CMake] Default Generator to use

2012-02-07 Thread Sarnath K - ERS, HCLTech
http://stackoverflow.com/questions/6430251/what-is-the-default-generator-for-cmake-in-windows In the stack overflow list, one guy mentions about [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\ Is this the same thing as the AutoConfigure thing that you were mentioning? What should I set

Re: [CMake] Default Generator to use

2012-02-07 Thread Eric Noulard
2012/2/7 Sarnath K - ERS, HCLTech k_sarn...@hcl.com: Hello Eric, We have a case where 2 teams are working on a common source tree. One team is using Visual Studio 9 2008 and the other Visual Studio 10 Our platform is Windows7 64-bit. We have a tool in our project that gets added as an

Re: [CMake] Default Generator to use

2012-02-07 Thread Sarnath K - ERS, HCLTech
I just looked at ActualConfigure() function. This is the same as the one mentioned in Stackoverflow URL. I think I will just create the correct entries in the registry and allow CMAKE to take the decision. I won't pass any -G at all. That's the most portable way as I look at it.

Re: [CMake] Default Generator to use

2012-02-07 Thread Eric Noulard
2012/2/7 Sarnath K - ERS, HCLTech k_sarn...@hcl.com: http://stackoverflow.com/questions/6430251/what-is-the-default-generator-for-cmake-in-windows In the stack overflow list, one guy mentions about [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\ Is this the same thing as the

Re: [CMake] Default Generator to use

2012-02-07 Thread Eric Noulard
2012/2/7 Sarnath K - ERS, HCLTech k_sarn...@hcl.com: I just looked at ActualConfigure() function. This is the same as the one mentioned in Stackoverflow URL. I think I will just create the correct entries in the registry and allow CMAKE to take the decision. I won't pass any -G at all.

Re: [CMake] Default Generator to use

2012-02-07 Thread Sarnath K - ERS, HCLTech
Thank you Eric The entry for 9.0 is already there and CMAKE is detecting it in our setup without passing any -G option. And, the default is 32-bit build even on 64-bit machines. This is great news for us! If this behavior is seen with the VC 10 installation then we are good to go on this

Re: [CMake] Making a variable a dependency...

2012-02-07 Thread Nicolas Desprès
On Sat, Feb 4, 2012 at 11:35 PM, Oliver Smith osm...@playnet.com wrote: My CMakeLists uses the Subversion repository information in a couple of places (it configures a file revision.h and it uses it for the CPack package name). The problem is that this variable is cached and retained until

[CMake] How to use CMake with icc via configuration options when needing interprocedural optimization?

2012-02-07 Thread janitor 048
Hello, this is a question I recently asked on stackoverflow ( http://stackoverflow.com/questions/9129233/recommended-ways-to-use-cmake-with-icc-via-configuration-options) but that has not received any response since then. Maybe this mailing list is a better place to ask... Here goes I would like

Re: [CMake] [Java] - Adding manifest information to a jar file

2012-02-07 Thread Nicolas Desprès
On Sat, Dec 10, 2011 at 3:46 PM, Andreas Schneider a...@cryptomilk.org wrote: On Saturday 29 October 2011 23:34:50 Frank Glinka wrote: Hi, Hi, Hi, I am happy about the recently improved Java support within cmake. Thanks! Anyhow, I have a small point which should be easy to improve and

Re: [CMake] How to use CMake with icc via configuration options when needing interprocedural optimization?

2012-02-07 Thread Michael Jackson
Not sure that is really going to work because by the time CMake has parsed your option code the compiler (and who knows how many other internal variables) has already been set. -- Mike Jackson www.bluequartz.net On Feb 7, 2012, at 8:43 AM, janitor 048 wrote: Hello, this is a question I

Re: [CMake] [Java] - Adding manifest information to a jar file

2012-02-07 Thread David Cole
2012/2/7 Nicolas Desprès nicolas.desp...@gmail.com: On Sat, Dec 10, 2011 at 3:46 PM, Andreas Schneider a...@cryptomilk.org wrote: On Saturday 29 October 2011 23:34:50 Frank Glinka wrote: Hi, Hi, Hi, I am happy about the recently improved Java support within cmake. Thanks! Anyhow, I

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

2012-02-07 Thread Stephen Kelly
David Cole wrote: 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 talk about it... Replies on this thread should just be a collector

[CMake] Utilities/cmcurl/CMakeLists.txt patch

2012-02-07 Thread Kedzierski, Artur CIV NSWC Corona, PA13
Can we have an option to set built-in Curl's CA certificate bundle path? Currently, there is no way to override it. Unfortunately, I cannot generate a patch using diff as I have to re-type it from another computer. Could this be added to Utilities/cmcurl/CMakeLists.txt? : SET(CURL_CA_BUNDLE

[CMake] Under Visual Studio , allow developers to hit F7 to run the INSTALL target

2012-02-07 Thread david_bjornbak
Developers on our team have found issues with the difference between INSTALL and the default build or F7 build all under Visual Studio. My question is, there's a reasonable way to configure cmake or Visual Studio to run the INSTALL target when you hit F7 or use the default Build Solution

[CMake] build using separate compiler,assembler,linker

2012-02-07 Thread Alex
Hi all, Since some days I’m trying to build a toolchain for crosscompiling but I stuck so far while trying to execute a buildprocess with two stages. According to a makefile I use as template, the processing looks as follows: Given some .c sourcefiles the makefile executes: Invoking: Compiler

Re: [CMake] Utilities/cmcurl/CMakeLists.txt patch

2012-02-07 Thread Jean-Christophe Fillion-Robin
There is a corresponding issue in the tracker: http://www.cmake.org/Bug/view.php?id=11743 Jc On Tue, Feb 7, 2012 at 2:38 PM, Kedzierski, Artur CIV NSWC Corona, PA13 artur.kedzier...@navy.mil wrote: Can we have an option to set built-in Curl's CA certificate bundle path? Currently, there is

Re: [CMake] How to use CMake with icc via configuration options when needing interprocedural optimization?

2012-02-07 Thread Alexander Neundorf
Hi Janitor, On Tuesday 07 February 2012, janitor 048 wrote: Hello, this is a question I recently asked on stackoverflow ( http://stackoverflow.com/questions/9129233/recommended-ways-to-use-cmake-wi th-icc-via-configuration-options) but that has not received any response since then. Maybe

Re: [CMake] Utilities/cmcurl/CMakeLists.txt patch

2012-02-07 Thread Kedzierski, Artur CIV NSWC Corona, PA13
The issue is corresponding to the last question in my email but not to the patch. Should I create a new issue in the tracker? -- Artur Kedzierski -Original Message- From: Jean-Christophe Fillion-Robin [mailto:jchris.filli...@kitware.com] Sent: Tuesday, February 07, 2012 12:38 To:

Re: [CMake] [Java] - Adding manifest information to a jar file

2012-02-07 Thread Nicolas Desprès
2012/2/7 David Cole david.c...@kitware.com: [...] The proposed commits (3 of them, right?) at https://github.com/polrop/CMake/commits/java-executable-jar look reasonable to me. Yes the three of them. [...] -- Nicolas Desprès -- Powered by www.kitware.com Visit other Kitware open-source

[CMake] cmake for cygwin

2012-02-07 Thread marco atzeri
Hi Bill, any plan to update the cygwin package ? Currently we are still on 2.8.4-1 Regards Marco -- 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] cmake for cygwin

2012-02-07 Thread Robert Dailey
+1 to this as well - Robert Dailey On Tue, Feb 7, 2012 at 4:16 PM, marco atzeri marco.atz...@gmail.com wrote: Hi Bill, any plan to update the cygwin package ? Currently we are still on 2.8.4-1 Regards Marco -- Powered by www.kitware.com Visit other Kitware open-source

Re: [CMake] Enhancement to CHECK_C_RUNS_SOURCE

2012-02-07 Thread Clifford Yapp
On Thu, Feb 2, 2012 at 11:59 AM, Alexander Neundorf a.neundorf-w...@gmx.net wrote: I think so. In this case, this should also be added to CheckCXXSourceRuns, CheckCSourceCompiles and CheckCXXSourceCompiles. Alex http://cmake.org/Bug/view.php?id=12944 Patch changes all four files and

Re: [CMake] CPACK generated DEB package can not create directories

2012-02-07 Thread Ralf Lange
I test it and it works. CMake 2.8.7 fix the problem. Great. Thanks Ralf On Mon, 2012-02-06 at 20:05 +0100, Eric Noulard wrote: 2012/2/6 Ralf Lange ralf.la...@longsoft.de: The CMake version is 2.8.2. The system is Debian 6.0.4 (squeez). The kernel is 2.6.32-5-amd64. The Desktop is

Re: [CMake] CPACK generated DEB package can not create directories

2012-02-07 Thread Eric Noulard
2012/2/8 Ralf Lange ralf.la...@longsoft.de: I test it and it works. CMake 2.8.7 fix the problem. Great. Ok fine, thanks. -- Erk Membre de l'April - « promouvoir et défendre le logiciel libre » - http://www.april.org -- Powered by www.kitware.com Visit other Kitware open-source projects at

[Cmake-commits] CMake branch, master, updated. v2.8.7-273-g6c7a622

2012-02-07 Thread David Cole
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 6c7a622279a8d02cd01b7c19d7eb3091b3765a23 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-275-g941d533

2012-02-07 Thread David Cole
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 941d533cc31cacde79e8fb3a6b61f0e93ccc3740 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-280-g66145a3

2012-02-07 Thread David Cole
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 66145a3e3b27921e6da0a06822c870664a528e34 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-284-gaab8510

2012-02-07 Thread David Cole
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 aab8510c256e6c1174218317c30541ea3594cf97 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-289-ga3e7913

2012-02-07 Thread David Cole
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 a3e791389735224426de524db2af938602201395 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-291-g0d7727d

2012-02-07 Thread David Cole
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 0d7727d1ccdf74dc5eb4298c8ecdea11dfe88cf1 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-294-g43b463c

2012-02-07 Thread David Cole
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 43b463cdfc8f1e2e595ab9cf0feec89b4b782e0b (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-298-g3921f1a

2012-02-07 Thread David Cole
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 3921f1a559053dcf8c894321cb505dc4d24b3685 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-305-g7dcfd9a

2012-02-07 Thread David Cole
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 7dcfd9aaf621672b3006fd5b084a17409d4435b2 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.7-2499-g200b760

2012-02-07 Thread David Cole
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 200b7602eab3af933a85a8c8c85f11a9cff175b7 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.7-306-g59ecc2c

2012-02-07 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 59ecc2c8ac4f6e4e3e9b20a37763365060d8bb6d (commit) from