Re: [cmake-developers] kwsysProcess threadsafety

2018-01-05 Thread clinton
Cool. I'd like to have parallel automoc and uic. How about this 4th option? Don't use threads. A single thread is able to spawn multiple processes, and wait on multiple processes, and react when 1 or more processes change state. I'm probably not familiar enough with kwsysProcess to know if

Re: [CMake] Install rpath handling for iOS frameworks [solved-ish]

2017-10-20 Thread clinton
It looks like you want the default behavior, but from what you show, I don't know what is disabling it. The default behavior does not require you to set the XCODE_ATTRIBUTE_LD_DYLIB_INSTALL_NAME, nor does it require you to call install_name_tool yourself at install time to get @rpath. Not

Re: [cmake-developers] CMP0071

2017-10-04 Thread clinton
- On Sep 26, 2017, at 9:07 AM, Sebastian Holtermann sebl...@xwmw.org wrote: >> I updated and I'm getting this: >> >> CMake Warning (dev) in claro/navigation5/CMakeLists.txt: >> Policy CMP0071 is not set: Let AUTOMOC and AUTOUIC process GENERATED files. >> Run "cmake --help-policy CMP0071"

Re: [cmake-developers] CMP0071

2017-09-26 Thread clinton
- On Sep 26, 2017, at 9:31 AM, Sebastian Holtermann sebl...@xwmw.org wrote: > On Dienstag, 26. September 2017 09:25:36 CEST clin...@elemtech.com wrote: >> - On Sep 26, 2017, at 9:07 AM, Sebastian Holtermann sebl...@xwmw.org > wrote: >> >> I updated and I'm getting this: >> >> >> >> CMake

Re: [cmake-developers] CMP0071

2017-09-26 Thread clinton
- On Sep 26, 2017, at 9:07 AM, Sebastian Holtermann sebl...@xwmw.org wrote: >> I updated and I'm getting this: >> >> CMake Warning (dev) in claro/navigation5/CMakeLists.txt: >> Policy CMP0071 is not set: Let AUTOMOC and AUTOUIC process GENERATED files. >> Run "cmake --help-policy CMP0071"

[cmake-developers] CMP0071

2017-09-26 Thread clinton
I updated and I'm getting this: CMake Warning (dev) in claro/navigation5/CMakeLists.txt: Policy CMP0071 is not set: Let AUTOMOC and AUTOUIC process GENERATED files. Run "cmake --help-policy CMP0071" for policy details. Use the cmake_policy command to set the policy and suppress this warning.

Re: [CMake] OSX RPATH linker flags not added on first build

2017-02-04 Thread clinton
- On Feb 3, 2017, at 11:25 AM, Doug Digglington wrote: > Hello, > I am using ExternalProject to download and build a third-party library (SDL) > in > my project. I am running into an issue on OSX where the RPATH linker flags > will > not be added when my

Re: [CMake] How to use a generated linker map with a shared library?

2017-01-16 Thread clinton
On Jan 14, 2017 7:16 PM, Paul Smith wrote:On Sun, 2017-01-15 at 12:08 +1100, Craig Scott wrote: > While not directly answering your question, it seems you may be trying > to deal with symbol visibility. Are you aware of CMake's symbol > visibility features? A good place

Re: [cmake-developers] CPackProductbuild Scripts

2016-12-12 Thread clinton
- On Dec 12, 2016, at 9:51 AM, Harry Mallon ha...@codexdigital.com wrote: > Hello, > > I am messing around with the CPackProductbuild stuff to try to port over what > we > had before. Currently it support undocumented options > "CPACK_PREFLIGHT_SCRIPT", "CPACK_POSTFLIGHT_SCRIPT", >

Re: [CMake] Full absolute path as RPATH in build tree

2016-12-05 Thread clinton
If you want the INSTALL_NAME_DIR to have effect in the build tree, you also need set_target_properties(EMsoftLib PROPERTIES BUILD_WITH_INSTALL_RPATH ON) Clint - On Dec 5, 2016, at 8:22 PM, Michael Jackson mike.jack...@bluequartz.net wrote: > I have this: > > if(APPLE AND

Re: [CMake] Full absolute path as RPATH in build tree

2016-12-05 Thread clinton
Do you want the library identification to be a full path? set_target_properties(foo PROPERTIES MACOSX_RPATH OFF) Clint - On Dec 5, 2016, at 7:38 PM, Michael Jackson mike.jack...@bluequartz.net wrote: > what combinations of RPATH variables do I need to set to get a full, > absolute path to

Re: [CMake] Force MSVC runtime for debug builds

2016-11-08 Thread clinton
- On Nov 7, 2016, at 1:37 AM, Stephan Menzel wrote: > Hello everyone, > I'm looking for a way to force Debug configurations in generated MSVC > solutions > to use the Release runtime instead of the default "Debug". e.g. /MD rather > than > /MDd. > My use case

Re: [CMake] CMake 3.7.0-r2 Open Project sometimes picks wrong version of Visual Studio

2016-11-08 Thread clinton
- On Nov 8, 2016, at 8:13 AM, Taylor Braun-Jones tay...@braun-jones.org wrote: > On Fri, Nov 4, 2016 at 2:55 PM, Brad King wrote: >> >> On 11/03/2016 06:04 PM, John Drescher wrote: >> > I opened a project in cmake-gui using the open project button from a >> > vc

[cmake-developers] possible fix to include in release

2016-09-22 Thread clinton
Hi, If there is a CMake 3.6.3, I'd like to request the inclusion of https://cmake.org/gitweb?p=cmake.git;a=commit;h=48624b3c Some Linux distros are now shipping cmake-gui on top of Qt5, and the reported QFileDialog problem is present. See also

Re: [CMake] Browse buttons in CMake-Gui give URL cannot be listed Malformed URL error (Manjaro KDE Plasma 5.7 Qt 5.7)

2016-09-22 Thread clinton
- On Sep 20, 2016, at 4:18 PM, cmake wrote: > Hi. > When I click "Browse source" or "Browse build" location buttons in the GUI I > get > an error dialog saying that "URL cannot be listed file://" followed by another > dialog "Malformed URL". > 1. I built and

Re: [CMake] Browse buttons in CMake-Gui give URL cannot be listed Malformed URL error (Manjaro KDE Plasma 5.7 Qt 5.7)

2016-09-22 Thread clinton
Hi, Thanks for reporting this. I was also able to reproduce it. The problem comes from cmake-gui calling QApplication::removeLibraryPath() in CMakeSetup.cxx. I think the solution is to remove that bit of code, but it may require some additional cpack related code to handle plugins

Re: [CMake] works when I build using XCode, but not with CMake makefile

2016-09-09 Thread clinton
- On Sep 7, 2016, at 12:52 PM, Cotton Candy wrote: > Here is the output from otool -L on skedmo-solver that you requested: > skedmo-solver: > libmysqlclient.18.dylib (compatibility version 18.0.0, current version 18.0.0) > /usr/lib/libSystem.B.dylib

Re: [CMake] works when I build using XCode, but not with CMake makefile

2016-09-07 Thread clinton
It may help to include the output of "otool -L" on skedmo-solver, /usr/lib/libmysqlclient.18.dylib and /Applications/MAMP/Library/lib/libmysqlclient.18.dylib. And it may also help to see if there is a difference in the otool output in the Xcode vs makefile scenario. Also, it may help to

Re: [CMake] CPack: Combine Debug and Release build

2016-08-18 Thread clinton
One thing I've done before is to tell cpack to bundle up 2 projects in one cpack session. One project is a debug build, and the other a release build. if ( CREATE_MULTI_CONFIG_PACKAGE ) set (CPACK_INSTALL_CMAKE_PROJECTS # self project " ${CMAKE_CURRENT_BINARY_DIR} ; ${CMAKE_PROJECT_NAME}

Re: [cmake-developers] [PATCH v3 5/7] For consoles output on Windows use our own std::streambuf

2016-07-06 Thread clinton
From what I remember, WriteConsoleW doesn't support redirection to a file or pipe.  I don't see an alternative in the patch for the case where stdout is not attached to the console. Clint -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at:

Re: [cmake-developers] [PATCH] Improve encoding handling on Windows

2016-07-01 Thread clinton
- On Jun 30, 2016, at 8:18 PM, Dāvis Mosāns davis...@gmail.com wrote: > On Windows getenv uses ANSI codepage so it needs to be encoded to > internally used encoding (eg. UTF-8). Here we use _wgetenv instead > and encode that. > > Also typically Windows applications (eg. MSVC compiler) use

Re: [cmake-developers] [PATCH] Improve encoding handling on Windows

2016-07-01 Thread clinton
- On Jul 1, 2016, at 8:41 AM, Mike Gelfand mike...@mikedld.com wrote: > On 07/01/2016 05:12 PM, Ben Boeckel wrote: >> On Fri, Jul 01, 2016 at 16:44:32 +0300, Dāvis Mosāns wrote: >>> 2. change GetEnv to return std::unique_ptr which will be >>> automatically deleted once out of scope and we

Re: [cmake-developers] Questions about coding conventions

2016-06-14 Thread clinton
- On Jun 14, 2016, at 8:09 AM, Daniel Pfeifer dan...@pfeifer-mail.de wrote: > On Tue, Jun 14, 2016 at 3:14 PM, Brad King wrote: >> On 06/13/2016 10:16 AM, Brad King wrote: Can't `std::ifstream` and `std::ofstream` be used directly? It seams that kwsys does

Re: [cmake-developers] Productbuild CPack generator

2016-06-06 Thread clinton
On Jun 6, 2016 7:28 AM, Brad King <brad.k...@kitware.com> wrote: > > On 06/02/2016 12:03 PM, clin...@elemtech.com wrote: > > I have submitted a productbuild generator this morning. > > Clinton, I see you followed up with some fixups to the topic and have > now squas

[Cmake-commits] CMake branch, next, updated. v3.6.0-rc1-66-g53d7c92

2016-06-03 Thread Clinton Stimpson
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=53d7c926741f54e8d556ffe3f0b415625e1f5293 commit 53d7c926741f54e8d556ffe3f0b415625e1f5293 Merge: cd496d0 2e3c67d Author: Clinton Stimpson <clin...@elemtech.com> AuthorDate: Fri Jun 3 16:42:35 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.5.2-878-gc832015

2016-06-03 Thread Clinton Stimpson
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c832015679e14bfa943cf9c1229aacaf19263b71 commit c832015679e14bfa943cf9c1229aacaf19263b71 Merge: b7fa61c a9e9f67 Author: Clinton Stimpson <clin...@elemtech.com> AuthorDate: Fri Jun 3 14:16:34 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.5.2-852-g328b91e

2016-06-02 Thread Clinton Stimpson
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=328b91e76b5ac6cfc45ca601e6cd03c216a7df9e commit 328b91e76b5ac6cfc45ca601e6cd03c216a7df9e Merge: aac033f e2d3d75 Author: Clinton Stimpson <clin...@elemtech.com> AuthorDate: Thu Jun 2 14:55:24 2016 -0400 Commit:

[Cmake-commits] CMake branch, next, updated. v3.5.2-846-g7eea22d

2016-06-02 Thread Clinton Stimpson
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7eea22de2d9b5055601dea903293b49ee6962e86 commit 7eea22de2d9b5055601dea903293b49ee6962e86 Merge: b746bd5 119b0d9 Author: Clinton Stimpson <clin...@elemtech.com> AuthorDate: Thu Jun 2 12:13:09 2016 -0400 Commit:

Re: [cmake-developers] Productbuild CPack generator

2016-06-02 Thread clinton
Hi Harry, I have submitted a productbuild generator this morning. https://cmake.org/gitweb?p=cmake.git;a=commit;h=b746bd5c Its capabilities should be about equal to the PackageMaker generator. The code for distribution.xml is shared between PackageMaker and productbuild. The

[Cmake-commits] CMake branch, next, updated. v3.5.2-844-gb746bd5

2016-06-02 Thread Clinton Stimpson
ns in full, below. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b746bd5c9941cf4747fedd4822ea9660d10a00c5 commit b746bd5c9941cf4747fedd4822ea9660d10a00c5 Merge: 68e77a5 09bb6f8 Author: Clinton Stimpson <clin...

Re: [cmake-developers] CMake 3.5.2 conflates OSX SDK version with target deployment

2016-05-25 Thread clinton
- On May 25, 2016, at 12:38 PM, Brad King brad.k...@kitware.com wrote: > On 05/25/2016 02:31 PM, Sean McBride wrote: >> CMake should probably default to the newest SDK (which is what Xcode does). >> I don't see a reason to default to an SDK "matching" the deployment target, >> in fact it's

Re: [CMake] Recommended style for multiple CPack generator folder structures

2016-05-24 Thread clinton
I prefer one for both installing and creating packages. install(TARGETS bar COMPONENT bar DESTINATION "./" # This must be "./" not "/" as it has to be a relative path ) Then set CMAKE_PREFIX_PATH=/Applications/Foo when you do an install. CMAKE_PREFIX_PATH will be pre-pended to relative

[Cmake-commits] CMake branch, next, updated. v3.5.2-1334-g824fa31

2016-05-11 Thread Clinton Stimpson
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=824fa316be79bc424901f35176df3eaa087bc4df commit 824fa316be79bc424901f35176df3eaa087bc4df Merge: 3f9a01c 9777597 Author: Clinton Stimpson <clin...@elemtech.com> AuthorDate: Wed May 11 14:52:32 2016 -0400 Commit:

Re: [CMake] Install with full absolute path on OS X

2016-04-26 Thread clinton
To set the install name to an absolute path, it would probably be something like set_property(TARGET EMsoft PROPERTY INSTALL_NAME_DIR ${CMAKE_INSTALL_PREFIX}/lib) Clint - On Apr 26, 2016, at 12:24 PM, Michael Jackson wrote: > I am building a library and

Re: [CMake] CPack and PackageMaker

2016-04-04 Thread clinton
Hi, I have updated the patch I sent before and you can find some new code here: https://github.com/clintonstimpson/CMake/commits/productbuild To help, perhaps you can review and test it. Or help in other ways you think it needs. I have done minimal testing. This includes making sure

[Cmake-commits] CMake branch, next, updated. v3.5.0-rc3-317-gc3f20a8

2016-03-01 Thread Clinton Stimpson
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c3f20a8861467bdf85322b184cf060c822d3b2c8 commit c3f20a8861467bdf85322b184cf060c822d3b2c8 Merge: cc20b98 53dbbaa Author: Clinton Stimpson <clin...@elemtech.com> AuthorDate: Tue Mar 1 17:54:59 2016 -0500 Commit:

Re: [CMake] shared library versioning on OS X

2016-02-20 Thread clinton
Perhaps this bug report fits what you are seeing. Are you seeing this limitation in the ninja generator? https://cmake.org/Bug/view.php?id=14140 Clint On Feb 20, 2016 11:49 AM, Bruce Stephens wrote: > > By the looks of it setting the SOVERSION when generating a

[Cmake-commits] CMake branch, next, updated. v3.4.2-2025-gbde6c55

2016-01-19 Thread Clinton Stimpson
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=bde6c5547e181b72aaefba092bdd9a79ba01 commit bde6c5547e181b72aaefba092bdd9a79ba01 Merge: 683f5b1 a15e375 Author: Clinton Stimpson <clin...@elemtech.com> AuthorDate: Tue Jan 19 16:06:07 2016 -0500 Commit:

Re: [cmake-developers] fixup_bundle with @loader_path

2016-01-14 Thread clinton
- On Jan 14, 2016, at 6:48 AM, Brad King brad.k...@kitware.com wrote: > On 01/13/2016 01:38 AM, Simon Wells wrote: >> it kept saying that @loader_path/libboost_chrono-mt.dylib was not found > > It looks like this was now reported here with a patch: > >

Re: [CMake] CMAKE_INSTALL_RPATH_USE_LINK_PATH is broken?

2016-01-13 Thread clinton
On Jan 8, 2016 8:16 PM, Elizabeth Fischer wrote: > > Hello, > > I'm using cmake 3.4.1.  I'm trying to compile libraries & executables with an > RPATH.  To that end, I use the following settings: >> >> >> SET(CMAKE_SKIP_BUILD_RPATH  FALSE) >>

Re: [CMake] still having rpath problems on osxZ

2015-12-31 Thread clinton
- On Dec 31, 2015, at 1:41 AM, Boudewijn Rempt b...@valdyas.org wrote: > I think I've finally figured out why I didn't get the results the cmake > documentation suggested I should be getting... It's the extra-cmake-modules > that I use, Krita being a KDE application. With these settings: >

Re: [CMake] still having rpath problems on osx

2015-12-22 Thread clinton
On Dec 21, 2015 12:26 PM, Boudewijn Rempt wrote: > > I'm still having rpath problems when creating libraries on OSX... And I'm not > sure what's going on here. Here's the output for a single library: > > otool -L ../i/lib/libkritaimage.dylib > ../i/lib/libkritaimage.dylib:

Re: [CMake] fixup bundle vs Qy 5.5.1 and rpaths

2015-12-18 Thread clinton
It appears you need to add the directory(ies) in the Qt installation containing the Qt libraries to your DIRS. set( DIRS ${APP}/Contents/plugins/platforms ${QT_BINARY_DIR} ${QT_LIBRARY_DIR} ) I think it should have been that way, even with Qt 5.3. Clint - On Dec 18, 2015, at 6:12

Re: [cmake-developers] Create subdirectories in Resource directory for Frameworks and Application bundle.

2015-12-11 Thread Clinton Stimpson
; directory > For iOS it will create "flat" directory structure. > > I could provide patch to fix that issue, if you agree with that. > What do you think about that? > Do you think the same should be applied to "Headers"? > > I think the abstraction seems

Re: [CMake] CPack and PackageMaker

2015-12-11 Thread clinton
;>> >>> Follow this link to subscribe/unsubscribe: >>> http://public.kitware.com/mailman/listinfo/cmake > > -- > > Powered by www.kitware.com > > Please keep messages on-topic and check the CMake FAQ at: > http://www.cmake.org/Wiki/CMake_FAQ > >

Re: [cmake-developers] Create subdirectories in Resource directory for Frameworks and Application bundle.

2015-12-11 Thread Clinton Stimpson
On Friday, December 11, 2015 05:01:41 PM Bartosz Kosiorek wrote: > Thanks Clint > > Unfortunately MACOSX_PACKAGE_LOCATION is not working correctly with RESOURCE > property. For every resource which is marked as RESOURCE, will be placed in > root "Resources" directory. > > The CMake code below

Re: [cmake-developers] Create subdirectories in Resource directory for Frameworks and Application bundle.

2015-12-11 Thread clinton
, if you agree with that. > What do you think about that? > Do you think the same should be applied to "Headers"? I think the abstraction seems reasonable, as well as what you are proposing. However, I'm not an Apple guru. I wonder if there are other Apple experts that can w

Re: [cmake-developers] [PATCH] Qt4Macros generate resources with same file name

2015-11-30 Thread Clinton Stimpson
On Tuesday, November 24, 2015 11:01:27 AM Joseph Shen wrote: > Dear CMake developers: > > Please view attached small patch that try to fix Qt4Macros generate > resources with same file name error. > > Right now, in the CMake main branch, using cmake with Qt4 library > add resources project can

[CMake] autouic problem with Visual Studio

2015-11-05 Thread clinton
Hi, I'm trying out the autouic feature in Visual Studio, and I noticed that if I change a .ui file, the corresponding ui_*.h file is not regenerated when I hit the build button. I don't see this problem under Makefiles. For makefiles, it appears a phony target is used and "cmake -E

Re: [CMake] getting the rpath right on osx

2015-11-02 Thread Clinton Stimpson
On Monday, November 02, 2015 04:08:55 PM Andreas Pakulat wrote: > Hi, > > On Mon, Nov 2, 2015 at 2:49 PM, Boudewijn Rempt wrote: > > On Mon, 2 Nov 2015, Andreas Pakulat wrote: > > > > I think the idea of using @rpath as install name of the Qt libraries is > > > >> geared

Re: [CMake] getting the rpath right on osx

2015-11-02 Thread clinton
- On Nov 2, 2015, at 2:26 AM, Boudewijn Rempt b...@valdyas.org wrote: > I checked the manual and the blog post about rpath on osx, but I'm still > confused, and still not getting it right... > > I build and installed Qt 5.6 alpha like this: > > ./configure -prefix

[Cmake-commits] CMake branch, next, updated. v3.4.0-rc2-1203-g63966e1

2015-11-02 Thread Clinton Stimpson
ow. - Log - https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=63966e13c4b02f45a02b6a308b7d9bb70ca77efe commit 63966e13c4b02f45a02b6a308b7d9bb70ca77efe Merge: acd292f f8eb72f Author: Clinton Stimpson <clin...@elemtech.com> AuthorDate: Mon Nov 2 08:49:12 2015 -0500 Commit:

Re: [cmake-developers] CPack/NSIS is broken after extended length paths fix

2015-09-21 Thread Clinton Stimpson
On Monday, September 21, 2015 12:28:37 PM Dmitry Kochkin wrote: > Hi Clint, > > >>Actually it's even worse because in current master HEAD I can see that > >>INST_DIR is empty in generated project: !define INST_DIR "" > >>(not sure if that's caused by your change) > > > >Interesting... Do you

Re: [cmake-developers] CPack/NSIS is broken after extended length paths fix

2015-09-18 Thread clinton
- On Sep 18, 2015, at 6:07 AM, Dmitry Kochkin <co...@mail.ru> wrote: > Hi Clinton, > I was looking into an issue that we have in CMake on Windows with extended > paths > and later on realized that you've fixed it. > However I've realized that you fixed it only in cmSys

Re: [cmake-developers] [PATCH] FindPythonLibs patches for version searching and frameworks

2015-09-17 Thread Clinton Stimpson
On Wednesday, September 16, 2015 11:04:23 PM David Gobbi wrote: > On Wed, Sep 16, 2015 at 9:41 AM, Brad King wrote: > > On 09/16/2015 11:39 AM, Brad King wrote: > > > On 09/16/2015 10:00 AM, David Gobbi wrote: > > >> this new patch only changes the search for the include

[Cmake-commits] CMake branch, next, updated. v3.3.1-3038-gcf6b25f

2015-09-17 Thread Clinton Stimpson
ow. - Log - http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=cf6b25fc0bcb78685da62991190eaa3ef910 commit cf6b25fc0bcb78685da62991190eaa3ef910 Merge: de4a71d 851915a Author: Clinton Stimpson <clin...@elemtech.com> AuthorDate: Thu Sep 17 10:33:47 2015 -0400 Commit:

Re: [cmake-developers] [PATCH] FindPythonLibs patches for version searching and frameworks

2015-09-17 Thread Clinton Stimpson
On Thursday, September 17, 2015 12:54:26 PM Brad King wrote: > On 09/17/2015 12:42 PM, David Gobbi wrote: > > Okay, Clinton. Now you've made me paranoid that I should be prepending > > the value of CMAKE_OSX_SYSROOT before the prefix if it isn't already > > part of the

Re: [cmake-developers] "Inconsistent sizeofcmds" on Mac

2015-09-17 Thread Clinton Stimpson
On Thursday, September 17, 2015 11:18:06 PM Mike Gelfand wrote: > Hello everyone, > > I’m using cmake 3.3.1 on Mac 10.10.4. I’m building an executable target on > Mac with the following settings: > > CMAKE_OSX_ARCHITECTURES = i386;x86_64 > CMAKE_OSX_DEPLOYMENT_TARGET = 10.5 >

Re: [CMake] Use CMAKE_MACOSX_RPATH to link a library outside build tree

2015-08-24 Thread Clinton Stimpson
On Sunday, August 23, 2015 04:46:17 AM Oleg Zhylin via CMake wrote: Hi All, I still need help with 0015708: Use CMAKE_MACOSX_RPATH to link a library outside build tree - MantisBT. Could you please suggest are there any CMake mechanisms to ensure a library outside build tree on mac is linked

[Cmake-commits] CMake branch, next, updated. v3.3.0-2240-g61a0fe4

2015-08-14 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=61a0fe4648d7e2c65c1fb62641f6c6e3dea2afb3 commit 61a0fe4648d7e2c65c1fb62641f6c6e3dea2afb3 Merge: 2d83690 e06ea83 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Sat Aug 15 01:16:52 2015 -0400 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v3.3.0-2238-g2d83690

2015-08-14 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=2d83690fe2c785b5cda0fb6c0822b879071a649d commit 2d83690fe2c785b5cda0fb6c0822b879071a649d Merge: b5cc08f ba1065a Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Sat Aug 15 00:59:49 2015 -0400 Commit: CMake Topic

Re: [cmake-developers] Modules/GetPrequisites.cmake issues

2015-08-03 Thread Clinton Stimpson
On Monday, August 03, 2015 10:22:18 AM Brad King wrote: On 07/30/2015 10:56 AM, Brad King wrote: Thanks! Applied: Those patches exposed a bug in FindMPI, so I fixed that and rebased the other changes on it: FindMPI: Drop unnecessary and incorrect use of GetPrerequisites

Re: [cmake-developers] [PATCH 3/3] FindQt4: document cross compilation

2015-07-30 Thread Clinton Stimpson
On Thursday, July 30, 2015 10:56:02 AM Brad King wrote: On 07/30/2015 09:29 AM, Pascal Bach wrote: CMAKE_FIND_ROOT_PATH_MODE would then need to be extended to support something like NATIVE and TARGET that one could use to choose where to look for files. This way every find_* call could

Re: [cmake-developers] [PATCH 3/3] FindQt4: document cross compilation

2015-07-29 Thread Clinton Stimpson
On Wednesday, July 29, 2015 04:59:57 PM Pascal Bach wrote: Hi Clint Am 29.07.2015 um 16:47 schrieb Clinton Stimpson: On Wednesday, July 29, 2015 04:05:41 PM Pascal Bach wrote: Hi Clint Am 29.07.2015 um 15:45 schrieb Clinton Stimpson: Hi Pascal, Thanks for the patches. Can

Re: [cmake-developers] [PATCH 3/3] FindQt4: document cross compilation

2015-07-29 Thread Clinton Stimpson
Hi Pascal, Thanks for the patches. Can you share with us why setting CMAKE_FIND_ROOT_PATH does not work, or how this new method compares? For example, in the toolchain file: SET(CMAKE_FIND_ROOT_PATH /path/to/Qt ...) Clint On Wednesday, July 29, 2015 02:32:48 PM Pascal Bach wrote: ---

Re: [cmake-developers] [PATCH 3/3] FindQt4: document cross compilation

2015-07-29 Thread Clinton Stimpson
On Wednesday, July 29, 2015 04:05:41 PM Pascal Bach wrote: Hi Clint Am 29.07.2015 um 15:45 schrieb Clinton Stimpson: Hi Pascal, Thanks for the patches. Can you share with us why setting CMAKE_FIND_ROOT_PATH does not work, or how this new method compares? For example

Re: [CMake] CMake removes rpath from Linux binaries. How to stop

2015-04-14 Thread clinton
- Original Message - I am trying to create a standalone build of our application on Linux. We are currently building on a mix of Mint 17 and Ubuntu 14.04. I have been doing a lot of reading about rpath, runpath and chrpath. The only way it would seem to get this done is to adjust the

[Cmake-commits] CMake branch, next, updated. v3.2.1-1270-geb0b17c

2015-03-27 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=eb0b17c2f07271753f202b14a5e52d30f8f5430d commit eb0b17c2f07271753f202b14a5e52d30f8f5430d Merge: 460cc0a 68a1304 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Sat Mar 28 00:53:44 2015 -0400 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v3.2.1-1245-gadfa972

2015-03-26 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=adfa97275e880a785d9611a60af9df9591fe4af0 commit adfa97275e880a785d9611a60af9df9591fe4af0 Merge: f195280 7fea419 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Fri Mar 27 00:06:11 2015 -0400 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v3.2.1-1247-gdf5c75d

2015-03-26 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=df5c75d49d76488736841fe6e3bde1f4d85b0ece commit df5c75d49d76488736841fe6e3bde1f4d85b0ece Merge: adfa972 798582d Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Fri Mar 27 00:15:37 2015 -0400 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v3.2.1-1234-g2d49fa7

2015-03-26 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=2d49fa73f23f4591bd22370ee34340a575d02183 commit 2d49fa73f23f4591bd22370ee34340a575d02183 Merge: c8631b5 34f2dff Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Thu Mar 26 09:48:30 2015 -0400 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v3.2.1-1228-g93b7164

2015-03-25 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=93b7164a34f40d60dbfd625d0aa90b55304ed34f commit 93b7164a34f40d60dbfd625d0aa90b55304ed34f Merge: 8e5b1aa 36f7cbc Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Thu Mar 26 00:55:51 2015 -0400 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v3.2.1-1213-g5fa4e63

2015-03-24 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5fa4e63ef5ec17d068a75700d5e40127ec82d2db commit 5fa4e63ef5ec17d068a75700d5e40127ec82d2db Merge: 7ae7789 9c76ff0 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Tue Mar 24 22:57:53 2015 -0400 Commit: CMake Topic

Re: [cmake-developers] Support of codesign

2015-03-19 Thread Clinton Stimpson
GMT+01:00 Clinton Stimpson clin...@elemtech.com: On Friday, February 20, 2015 12:07:55 PM A. Klitzing wrote: Hi Clint, I have another patch to tweak the error output a little bit. If codesign fails it won't be possible to get the error message of codesign itself

[Cmake-commits] CMake branch, next, updated. v3.2.1-1090-g80ca453

2015-03-18 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=80ca453b3313688e40750f0908c05a77d5c4a3d4 commit 80ca453b3313688e40750f0908c05a77d5c4a3d4 Merge: 15b62be 2c50db2 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Wed Mar 18 23:05:04 2015 -0400 Commit: CMake Topic

Re: [CMake] Are CMAKE_CXX_FLAGS supposed to go on the link line?

2015-03-02 Thread Clinton Stimpson
FYI, I also came across this discrepancy recently, and logged a bug for it. http://www.cmake.org/Bug/view.php?id=15427 With the example provided in the bug report, I am seeing link errors under Xcode which I do not see under Makefiles. Clint On Monday, March 02, 2015 07:33:38 PM Roman

Re: [cmake-developers] Support of codesign

2015-02-20 Thread Clinton Stimpson
On Friday, February 20, 2015 12:07:55 PM A. Klitzing wrote: Hi Clint, I have another patch to tweak the error output a little bit. If codesign fails it won't be possible to get the error message of codesign itself. That is a little bit confusing because it just fails without an

[Cmake-commits] CMake branch, next, updated. v3.2.0-rc1-532-geb52b44

2015-02-20 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=eb52b449c2006892e5d13a035ea3c9d31b1a602c commit eb52b449c2006892e5d13a035ea3c9d31b1a602c Merge: 37e5398 7b582d1 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Fri Feb 20 10:19:19 2015 -0500 Commit: CMake Topic

Re: [cmake-developers] [PATCH] User may now specify toolset through CMake GUI

2015-02-16 Thread Clinton Stimpson
On Monday, February 16, 2015 11:35:47 AM Brad King wrote: On 02/15/2015 03:27 PM, rcdailey.li...@gmail.com wrote: From: Robert Dailey rcdai...@gmail.com The -T parameter to CMake may now be specified through QtDialog (cmake-gui) via a new text field in the first-time configure wizard

[Cmake-commits] CMake branch, next, updated. v3.1.1-2346-gc350d78

2015-01-26 Thread Clinton Stimpson
8ced637 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Mon Jan 26 11:23:19 2015 -0500 Commit: CMake Topic Stage kwro...@kitware.com CommitDate: Mon Jan 26 11:23:19 2015 -0500 Merge topic 'cmake-gui-osx' into next 8ced6375 cmake-gui: Shrink spacing between search field

[Cmake-commits] CMake branch, next, updated. v3.1.1-2342-gd4506d1

2015-01-26 Thread Clinton Stimpson
d4506d1708d5da92f5ba26b43262db6d8b0077f9 Merge: a274292 b17d835 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Mon Jan 26 10:38:00 2015 -0500 Commit: CMake Topic Stage kwro...@kitware.com CommitDate: Mon Jan 26 10:38:00 2015 -0500 Merge topic 'file-strings-utf-16' into next

Re: [cmake-developers] Patch for some GUI Mac fixes

2015-01-26 Thread Clinton Stimpson
On Monday, January 26, 2015 08:01:31 AM Kevin Wojniak wrote: These 3 patches fix the Install menu not showing for Qt5 builds, the Install buttons not behaving like the other (standard) buttons, and fixes the search field not being shown on OS X when the window is at minimum size. Thanks for

[Cmake-commits] CMake branch, next, updated. v3.1.1-2364-g6031673

2015-01-26 Thread Clinton Stimpson
, below. - Log - http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=60316739d134a6c76e435746f4c6009220e533a9 commit 60316739d134a6c76e435746f4c6009220e533a9 Merge: 0492ede b359ee9 Author: Clinton Stimpson clin...@elemtech.com

[Cmake-commits] CMake branch, next, updated. v3.1.0-1984-gc4b0c12

2015-01-15 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c4b0c12aa0c4745f6995b52c55deb7527a52f43b commit c4b0c12aa0c4745f6995b52c55deb7527a52f43b Merge: ea660cf 39c66ed Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Thu Jan 15 17:07:44 2015 -0500 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v3.1.0-1919-gdb5583d

2015-01-14 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=db5583de060221ed7af339eb1a9101d43794f11a commit db5583de060221ed7af339eb1a9101d43794f11a Merge: e9ecfbc 67384cf Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Wed Jan 14 17:08:46 2015 -0500 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v3.1.0-1893-gb4346c1

2015-01-14 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b4346c10c6f407b069c5db7ace6d325b83404c1c commit b4346c10c6f407b069c5db7ace6d325b83404c1c Merge: a403754 8de75f1 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Wed Jan 14 11:02:42 2015 -0500 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v3.1.0-1870-g84fa667

2015-01-13 Thread Clinton Stimpson
, below. - Log - http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=84fa667ac294544aee9b0baed03f49776d6b1d1e commit 84fa667ac294544aee9b0baed03f49776d6b1d1e Merge: 261a06e 17f2053b Author: Clinton Stimpson clin...@elemtech.com

[Cmake-commits] CMake branch, next, updated. v3.1.0-1597-gcbda3a7

2015-01-08 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=cbda3a77ec426b6340d705eeb153f53346b53191 commit cbda3a77ec426b6340d705eeb153f53346b53191 Merge: def4979 61cf781 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Thu Jan 8 22:47:53 2015 -0500 Commit: CMake Topic Stage

[Cmake-commits] CMake branch, next, updated. v3.1.0-1599-g7b5da14

2015-01-08 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7b5da14d074e365b812802b0b8c1be8aedf770fd commit 7b5da14d074e365b812802b0b8c1be8aedf770fd Merge: cbda3a7 9a8ab86 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Thu Jan 8 23:07:00 2015 -0500 Commit: CMake Topic Stage

[Cmake-commits] CMake branch, next, updated. v3.1.0-1333-g4da0681

2014-12-22 Thread Clinton Stimpson
, below. - Log - http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=4da0681a70ac512367d59c93703e91e76cc62192 commit 4da0681a70ac512367d59c93703e91e76cc62192 Merge: 15162ca c294a11 Author: Clinton Stimpson clin...@elemtech.com

[Cmake-commits] CMake branch, next, updated. v3.1.0-1292-gb0d35d9

2014-12-19 Thread Clinton Stimpson
, below. - Log - http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b0d35d9e647b105718361b62a5ca230cdec3e782 commit b0d35d9e647b105718361b62a5ca230cdec3e782 Merge: 8a1b7e7 a552314 Author: Clinton Stimpson clin...@elemtech.com

[Cmake-commits] CMake branch, next, updated. v3.1.0-1294-gd13b3c7

2014-12-19 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d13b3c756347497a626a9964e6e5b8945b00fd6a commit d13b3c756347497a626a9964e6e5b8945b00fd6a Merge: b0d35d9 30b0906 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Fri Dec 19 16:21:39 2014 -0500 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v3.1.0-1296-ga04d50e

2014-12-19 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a04d50e5ba6bdc81ce2b09d683afbc6d5e1a1a66 commit a04d50e5ba6bdc81ce2b09d683afbc6d5e1a1a66 Merge: d13b3c7 f68ca6c Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Fri Dec 19 17:38:57 2014 -0500 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v3.1.0-1298-g57d720f

2014-12-19 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=57d720f763f58ea0ab5127c590d4ce0ad9976567 commit 57d720f763f58ea0ab5127c590d4ce0ad9976567 Merge: a04d50e f248cd4 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Fri Dec 19 17:51:10 2014 -0500 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v3.1.0-1300-g7e07fc0

2014-12-19 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7e07fc027b8d409a501514a39d0df2c0d11adfd0 commit 7e07fc027b8d409a501514a39d0df2c0d11adfd0 Merge: 57d720f b85e9a8 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Fri Dec 19 23:44:35 2014 -0500 Commit: CMake Topic

Re: [cmake-developers] New RelWithDebInfo flags?

2014-11-22 Thread clinton
- Original Message - Hi, I just discovered today that it looks like GCC 4.8 shipped with a new optimization level: -Og Optimize debugging experience. -Og enables optimizations that do not interfere with debugging. It should be the optimization level of choice

Re: [CMake] CPack: .desktop files with tar.gz maker?

2014-11-11 Thread clinton
- Original Message - On 11/7/14, Clinton Stimpson clin...@elemtech.com wrote: On Friday, November 07, 2014 03:50:32 PM Eric Wing wrote: I have a build and packaging system where I can distribute (mostly) standalone apps for Linux desktop. I am using the default CPack installer

Re: [CMake] CPack: .desktop files with tar.gz maker?

2014-11-07 Thread Clinton Stimpson
On Friday, November 07, 2014 03:50:32 PM Eric Wing wrote: I have a build and packaging system where I can distribute (mostly) standalone apps for Linux desktop. I am using the default CPack installer which creates .tar.gz, .Z, and .sh files. I like this opposed to the .deb/.rpm package

[cmake-developers] CMake 3.1 regression with incremental builds ?

2014-11-06 Thread Clinton Stimpson
Using the netcdf project ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-4.3.2.tar.gz I see a problem with incremental builds doing a relink of libraries. Within my project, this leads to unnecessarily relinking of many executables every time I run cmake. For example: tar zxf

Re: [cmake-developers] CMake 3.1 regression with incremental builds ?

2014-11-06 Thread clinton
I've put in a fix for this. 580b668d genex: Preserve order while evaluating TARGET_OBJECTS Can we put this in RC 2? Clint - Original Message - Using the netcdf project ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-4.3.2.tar.gz I see a problem with incremental builds doing a relink

  1   2   3   4   5   6   7   8   9   >