[cmake-developers] [CMake 0015630]: ENABLE_EXPORTS value is not used for gcc makefile -rdynamic option

2015-06-24 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=15630 == Reported By:Nicolas Deherly Assigned To:

[Cmake-commits] CMake branch, next, updated. v3.3.0-rc2-640-g6edc86f

2015-06-24 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 6edc86ff309de6a2322ec201d6f833159ad408b6 (commit) via

Re: [CMake] CPack and mswindows MAX_PATH for temporary work

2015-06-24 Thread Mathieu Schroeter
On 15/06/2015 17:13, Mathieu Schroeter wrote: Is MAX_PATH a problem with CPack? I received the following error when the destination is longer than MAX_PATH (here, 264 chars): CPack Error: Problem copying file:

Re: [cmake-developers] Add command line options for deprecation message control

2015-06-24 Thread Michael Scott
Thanks for the comments, here is the previous patch, with the suggested amendments. Cheers, Michael On 24/06/2015 15:45, Brad King wrote: On 06/23/2015 03:57 PM, Michael Scott wrote: I've implemented some changes to cmake.cxx and cmake.h, to implement setting the CMAKE_ERROR_DEPRECATED and

Re: [CMake] iOS multi-arch library target and xcodebuild

2015-06-24 Thread Ruslan Baratov via CMake
On 24-Jun-15 23:03, Bill Hoffman wrote: What is in the patched CMake? * workaround for bug: http://public.kitware.com/Bug/view.php?id=12506 * installing universal simulator + device library CMake already supports mulit-arch libraries on the Apple platform. As far as I know you can build two

Re: [CMake] iOS multi-arch library target and xcodebuild

2015-06-24 Thread headupinclouds
The original post was asking for a universal armv7, arm64, x86_64 (iOS and simulator) build. I had thought that the iOS simulator x86_64 architecture was not supported in the same FAT library as the arm architectures without the patch, but I could be wrong. Let me know if you think this patch

Re: [cmake-developers] Add command line options for deprecation message control

2015-06-24 Thread Brad King
On 06/23/2015 03:57 PM, Michael Scott wrote: I've implemented some changes to cmake.cxx and cmake.h, to implement setting the CMAKE_ERROR_DEPRECATED and CMAKE_WARN_DEPRECATED variables via command line options, for the Mantis issue 0014669, in a generic GCC style pattern. I've taken on

[Cmake-commits] CMake branch, next, updated. v3.3.0-rc2-642-g43bacce

2015-06-24 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 43bacced9aad5ce4129290178bb3765cedeb2be3 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.3.0-rc2-644-g7797c9c

2015-06-24 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 7797c9c97b63e8e7ad7de9ad6f6ab995f9c1ddcf (commit) via

Re: [CMake] iOS multi-arch library target and xcodebuild

2015-06-24 Thread Eric Wing
On 6/24/15, Ruslan Baratov via CMake cmake@cmake.org wrote: On 24-Jun-15 23:03, Bill Hoffman wrote: What is in the patched CMake? * workaround for bug: http://public.kitware.com/Bug/view.php?id=12506 * installing universal simulator + device library CMake already supports mulit-arch libraries

Re: [cmake-developers] [PATCH] Discussion needed: FindBISON: refine VERBOSE feature of BISON_TARGET

2015-06-24 Thread 정언
2015-06-22 22:39 GMT+09:00 Brad King brad.k...@kitware.com: On 06/21/2015 09:06 AM, 정언 wrote: internal macro defines a custom command that makes a copy of the default named report file to the specified file path. The custom command is not invoked until any other command requires the file, for

Re: [cmake-developers] [PATCH] Discussion needed: FindBISON: refine VERBOSE feature of BISON_TARGET

2015-06-24 Thread Brad King
On 06/24/2015 11:13 AM, 정언 wrote: The copying command should be run right after each execution of bison. Yes. However, add_custom_command never guarantees a running order of internal commands. The documentation says, the commands can run parallel so never ever put commands with implicit

[Cmake-commits] CMake branch, master, updated. v3.3.0-rc2-265-g6de440e

2015-06-24 Thread Kitware Robot
20150624) +set(CMake_VERSION_PATCH 20150625) #set(CMake_VERSION_RC 1) --- Summary of changes: Source/CMakeVersion.cmake |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- CMake

[Cmake-commits] CMake branch, next, updated. v3.3.0-rc2-648-gb2ba8a9

2015-06-24 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 b2ba8a917d2d89ad5c43c855d510e9e39b7e7e0a (commit) via

[Cmake-commits] CMake branch, next, updated. v3.3.0-rc2-654-g704fbe0

2015-06-24 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 704fbe08de5af1aa788282e1e7f6933d09b49fb7 (commit) via

Re: [CMake] iOS multi-arch library target and xcodebuild

2015-06-24 Thread headupinclouds
Jason, This link ( Building-universal-ios-library https://github.com/ruslo/sugar/wiki/Building-universal-ios-library ) provides details on creating iOS Universal (multi-arch) builds with CMake. It shows both a manual process and a patched CMake version that will accomplish this for you. I've

[CMake] A little help with cmake and external libraries

2015-06-24 Thread Owen Alanzo Hogarth
Hi ladies and gentlemen I've just started using cmake a week or so ago but I am having some difficulties getting cmake to find external libraries. I am not new to programming just new to cmake. I am making a very simple project with a structure like this project ...cmakelists.txt project/source

Re: [CMake] iOS multi-arch library target and xcodebuild

2015-06-24 Thread Bill Hoffman
What is in the patched CMake? CMake already supports mulit-arch libraries on the Apple platform. On 6/24/2015 2:18 PM, headupinclouds wrote: Jason, This link ( Building-universal-ios-library https://github.com/ruslo/sugar/wiki/Building-universal-ios-library ) provides details on creating