[CMake] Correct way to set machos-min-version in Cmake 3.2.1

2015-03-17 Thread James Turner
Hello, I’d imagine this is a FAQ, but I’ve Googled without success. Apologies if the answer is out there. With Cmake 3.2.1, some behaviour seems to have changed, in the handling of CMAKE_OSX_DEPLOYMENT_TARGET. I am trying to build using the 10.9 SDK, but with macosx-min-version set to 10.7

Re: [CMake] nonstandard C++ source filename extension

2015-03-17 Thread Petr Kmoch
Hi Dave. This looks like a message directly from your compiler. Does it work if you try to compile the file manually (no CMake)? Petr On Tue, Mar 17, 2015 at 5:10 AM, Dave Yost d...@yost.com wrote: From what I can glean online, I’ve tried this: set_source_files_properties(foo.bar

Re: [CMake] DEB package generated with cpack does not pass lintian check on Ubuntu

2015-03-17 Thread Hendrik Sattler
Hi, you have to differ here: lintian is for checking packaging policy of distribution packages for Debian and derivatives like Ubuntu. Cpack does not necessarily create packages according to these policies but still valid packages. If dpkg eats it without errors, it's ok for

Re: [CMake] Problems with WriteCompilerDetectionHeader and cxx_nullptr

2015-03-17 Thread Brad King
On 03/16/2015 03:05 AM, Roman Wüger wrote: attached is an updated patch. Applied, thanks: WCDH: Fix cxx_nullptr workaround for pre-C++11 compilers http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f9d09626 -Brad -- Powered by www.kitware.com Please keep messages on-topic and check the

Re: [CMake] nonstandard C++ source filename extension

2015-03-17 Thread Adam
Hi Dave, try add_definitions(-x c++) CMakeLists.txt cmake_minimum_required(VERSION 3.0 FATAL_ERROR) project(asm CXX) add_definitions(-x c++) set_source_files_properties(foo.bar PROPERTIES LANGUAGE CXX) add_executable(foo foo.bar) set_target_properties(foo PROPERTIES LINKER_LANGUAGE CXX) Adam

Re: [CMake] Full paths for transitive dependencies

2015-03-17 Thread Adam
I happened to stumble acrosss this today. I fixed it by adding another find_package to the last project but this seems to defeat the purpose of transitive dependencies. What am I doing wrong? Here's a more detailed example (https://github.com/toomuchatonce/cmake_transient_issue.git)

[CMake] How do one manage external projects in a clean way?

2015-03-17 Thread Cedric Doucet
Hello! I would like to manage external libraries called in my code. My goal is to let users install these libraries by themselves or let CMake download and install these libraries for them. For the moment, I use External_project_add command to download external libraries. This works good

[Cmake-commits] CMake branch, next, updated. v3.2.1-1049-g53cbf3a

2015-03-17 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 53cbf3a06bca2772947ccfa960523d09caa59285 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.2.1-1052-g13af2b0

2015-03-17 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 13af2b0fdf0695e57434a1280a3516639923d19c (commit) via

[Cmake-commits] CMake branch, master, updated. v3.2.1-440-g380db3d

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

Re: [cmake-developers] Introduction and volunteering for the Matlab package

2015-03-17 Thread Raffi Enficiaud
On 17 Mar 2015, at 19:39, Brad King brad.k...@kitware.com wrote: On 03/17/2015 12:28 PM, Raffi Enficiaud wrote: I think everything in http://www.cmake.org/Bug/view.php?id=14641 was addressed. What should the maintainer usually do? I've marked your Mantis account as a developer for

[Cmake-commits] CMake branch, next, updated. v3.2.1-1060-g86144dc

2015-03-17 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 86144dcd9106990de5c5329f9c8be60d7f329c89 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.2.1-1067-g285a9ac

2015-03-17 Thread Bill Hoffman
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 285a9ac82799578706c1ae80dafa33c8eb2c8619 (commit) via

Re: [cmake-developers] Introduction and volunteering for the Matlab package

2015-03-17 Thread Raffi Enficiaud
-2015 04:23:40 Uploaded: D:/bamboo_build_dir/SW-CMAK-JOB1/dashboard/My Tests/KWSys-build/Testing/20150317-0100/Build.xml 17-Mar-2015 04:23:44 Uploaded: D:/bamboo_build_dir/SW-CMAK-JOB1/dashboard/My Tests/KWSys-build/Testing/20150317-0100/Configure.xml 17-Mar-2015 04:23:49 Uploaded: D

[Cmake-commits] CMake branch, next, updated. v3.2.1-1062-gca6f066

2015-03-17 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 ca6f06607b0b93781483eaf77c071c1584d32867 (commit) via

Re: [cmake-developers] [CMake] Problems with WriteCompilerDetectionHeader and cxx_nullptr

2015-03-17 Thread Brad King
On 03/16/2015 03:05 AM, Roman Wüger wrote: attached is an updated patch. Applied, thanks: WCDH: Fix cxx_nullptr workaround for pre-C++11 compilers http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f9d09626 -Brad -- Powered by www.kitware.com Please keep messages on-topic and check the

[Cmake-commits] CMake branch, next, updated. v3.2.1-1065-g4dbd32d

2015-03-17 Thread Bill Hoffman
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 4dbd32d02224616177686afd8733a4ad03d0c298 (commit) via

Re: [cmake-developers] [PATCH] Fix FindPackageHandleStandardArgs documentation

2015-03-17 Thread Brad King
On 03/14/2015 05:23 PM, Gregor Jasny wrote: this is my first attempt to practice the topic workflow. I pushed the attached patch to the topic branch and await review before merging to next. The change looks good. Please change the commit message to start in the line FPHSA: Revise documented

Re: [cmake-developers] Introduction and volunteering for the Matlab package

2015-03-17 Thread Brad King
On 03/17/2015 12:28 PM, Raffi Enficiaud wrote: I think everything in http://www.cmake.org/Bug/view.php?id=14641 was addressed. What should the maintainer usually do? I've marked your Mantis account as a developer for CMake and assigned the issue to you. In this case since it's already

Re: [cmake-developers] file glob and glob recurse directory listing difference

2015-03-17 Thread Brad King
On 03/15/2015 06:37 PM, Domen Vrankar wrote: Alternative would be to define LIST_DIRECTORIES for GLOB_RECURSE only and preserve back compatibility that way - maybe also define NO_DIRECTORY_LISTING for GLOB just for the sake of consistency. Let's just define both options for both commands so

[Cmake-commits] CMake branch, next, updated. v3.2.1-1057-g2753adc

2015-03-17 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 2753adca6f98c66733498996b2072073823114bf (commit) via

[Cmake-commits] CMake branch, next, updated. v3.2.1-1069-g3eb856c

2015-03-17 Thread Domen Vrankar
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 3eb856c1332775686b6003ba2c05c033dbd7ac47 (commit) via

Re: [cmake-developers] [PATCH] ABI.h.in: add support for Xtensa architecture

2015-03-17 Thread Brad King
On 03/17/2015 08:51 AM, Max Filippov wrote: Signed-off-by: Max Filippov jcmvb...@gmail.com Thanks, applied: KWIML: Teach ABI.h about Xtensa architecture http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ded79a97 Merge branch 'upstream-kwiml' into update-kwiml

Re: [cmake-developers] [PATCH v8 0/5] Add XCTest Bundle Support

2015-03-17 Thread Brad King
On 03/14/2015 03:03 PM, Gregor Jasny wrote: I changed it into a Find module and it looks much more polished now. Great. I fully agree that modifying the testee is not something one would expect when adding a test for it. Therefore I reverted the rpath setting for Frameworks and replaced it

[cmake-developers] [PATCH] ABI.h.in: add support for Xtensa architecture

2015-03-17 Thread Max Filippov
Signed-off-by: Max Filippov jcmvb...@gmail.com --- Utilities/KWIML/ABI.h.in | 6 ++ 1 file changed, 6 insertions(+) diff --git a/Utilities/KWIML/ABI.h.in b/Utilities/KWIML/ABI.h.in index 21c9139..6300ada 100644 --- a/Utilities/KWIML/ABI.h.in +++ b/Utilities/KWIML/ABI.h.in @@ -432,6 +432,12

[cmake-developers] [CMake 0015451]: Setting MAP_IMPORTED_CONFIG_CONFIG hides IMPORTED_LOCATION

2015-03-17 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=15451 == Reported By:Bjoern Thiel Assigned To:

[Cmake-commits] CMake branch, next, updated. v3.2.1-1033-g100f5b6

2015-03-17 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 100f5b6c1f44e7b49f0e95e6b4e9f18e4599b05f (commit) via

[Cmake-commits] CMake branch, next, updated. v3.2.1-1035-g987430c

2015-03-17 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 987430c70a226a5dcf88d04c3d1ab75ac1b142f4 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.2.1-1037-gb80194b

2015-03-17 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 b80194b8302ef3eb1c205008f238ead50f34d50d (commit) via

[Cmake-commits] CMake branch, master, updated. v3.2.1-437-g0320993

2015-03-17 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, master has been updated via 03209934560329aebd75dc74916e236e3b5c9b74 (commit) via

[Cmake-commits] CMake branch, master, updated. v3.2.1-432-ge9072d2

2015-03-17 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, master has been updated via e9072d26c0d90a8ff521d46347e5d1b3555f8099 (commit) via

[Cmake-commits] CMake branch, master, updated. v3.2.1-439-ga5cab2e

2015-03-17 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, master has been updated via a5cab2e7391df8d2072f1083c075a69bc746c7aa (commit) via

[Cmake-commits] CMake branch, master, updated. v3.2.1-434-g8915cdd

2015-03-17 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, master has been updated via 8915cddcde6f8b0946e54f1cd6c9b8434bf4fd14 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.2.1-1044-gffcab9b

2015-03-17 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 ffcab9ba5822eec95d349d937b5cb11e7ca7c2a1 (commit) via

[Cmake-commits] CMake branch, next, updated. v3.2.1-1055-g8a82bf6

2015-03-17 Thread Domen Vrankar
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 8a82bf6a83fa1d9c3c53cc5373cc793366d6b954 (commit) via

Re: [cmake-developers] Introduction and volunteering for the Matlab package

2015-03-17 Thread Raffi Enficiaud
On 17 Mar 2015, at 16:25, Brad King brad.k...@kitware.com wrote: Nothing right now! I've squashed this all into one commit: FindMatlab: Rewrite module and provide a usage API http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=49c8dcf7 and merged to 'master' for inclusion in 3.3.