[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2703-g727c411

2013-04-02 Thread Clinton Stimpson
;a=commitdiff;h=727c411d064cb5c50c230f884f52417532334315 commit 727c411d064cb5c50c230f884f52417532334315 Merge: 5a717d6 bec8e64 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Tue Apr 2 09:49:54 2013 -0400 Commit: CMake Topic Stage kwro...@kitware.com CommitDate: Tue Apr 2 09:49:54

Re: [cmake-developers] if (FOO == BAR) ...

2013-03-21 Thread Clinton Stimpson
Follow this link to subscribe/unsubscribe: http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- Powered by www.kitware.com Visit other Kitware open-source projects

Re: [cmake-developers] Qt 4 and 5 on the same system - qmake binary name priority

2013-03-15 Thread clinton
- Original Message - On 03/15/2013 07:57 AM, Stephen Kelly wrote: Marcus D. Hanwell wrote: On Mon, Mar 11, 2013 at 12:45 PM, Brad King brad.k...@kitware.com wrote: On 03/11/2013 12:34 PM, Clinton Stimpson wrote: I fixed a few bugs with that patch, and it is now merged

Re: [cmake-developers] Qt 4 and 5 on the same system - qmake binary name priority

2013-03-15 Thread clinton
- Original Message - I have a fix for it coming soon. Steve, you have your Qt5 in CMAKE_PREFIX_PATH, right? That's a way I found to reproduce this. Yes, that's right. Ok. Then the fix is now in next. Clint -- Powered by www.kitware.com Visit other Kitware open-source

[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2528-g97fba40

2013-03-15 Thread Clinton Stimpson
, below. - Log - http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=97fba40e31ef055d054cd4f30f2c138eb500e859 commit 97fba40e31ef055d054cd4f30f2c138eb500e859 Merge: 25d6f1b bd27c64 Author: Clinton Stimpson clin...@elemtech.com

Re: [cmake-developers] Qt 4 and 5 on the same system - qmake binary name priority

2013-03-11 Thread Clinton Stimpson
On Monday, March 11, 2013 11:23:31 AM Brad King wrote: On 03/08/2013 02:52 PM, Clinton Stimpson wrote: Its not as simple as changing the order. If I have my own build of Qt4, and if FindQt4.cmake had this: find_program(QT_QMAKE_EXECUTABLE NAMES qmake4 qmake-qt4 qmake-mac qmake ...) and I

Re: [cmake-developers] Qt 4 and 5 on the same system - qmake binary name priority

2013-03-11 Thread Clinton Stimpson
On Monday, March 11, 2013 10:05:48 AM Clinton Stimpson wrote: On Monday, March 11, 2013 11:23:31 AM Brad King wrote: On 03/08/2013 02:52 PM, Clinton Stimpson wrote: Its not as simple as changing the order. If I have my own build of Qt4, and if FindQt4.cmake had this: find_program

[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2435-ge29babe

2013-03-11 Thread Clinton Stimpson
9345df0 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Mon Mar 11 12:32:03 2013 -0400 Commit: CMake Topic Stage kwro...@kitware.com CommitDate: Mon Mar 11 12:32:03 2013 -0400 Merge topic 'findqt4-withqt5' into next 9345df0 Fix FindQt4 module 5990a56 CMake Nightly Date

[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2437-g2b116bd

2013-03-11 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=2b116bd80ea50a46640d701e8f55742250a5cba5 commit 2b116bd80ea50a46640d701e8f55742250a5cba5 Merge: e29babe b8347ae Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Mon Mar 11 12:43:05 2013 -0400 Commit: CMake Topic

Re: [cmake-developers] Qt 4 and 5 on the same system - qmake binary name priority

2013-03-08 Thread Clinton Stimpson
://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers -- Clinton Stimpson Elemental Technologies, Inc

[CMake] ctest git submodules

2013-02-26 Thread Clinton Stimpson
Is there anything special I need to do with ctest so that the ctest_update() will recognize git submodules and do any init/update of those for me? I assumed it would be automatic, but that doesn't seem to be the case. -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation

Re: [CMake] ctest git submodules

2013-02-26 Thread Clinton Stimpson
Regards Am 26.02.2013 um 20:16 schrieb NoRulez noru...@me.com: Hi, I don't think so, you could check for a .git directory and then call git submodule update --init --recursive Best Regards Am 26.02.2013 um 18:34 schrieb Clinton Stimpson clin...@elemtech.com: Is there anything

Re: [CMake] Adding dylib with either @rpath or absolute paths to osx cmd line executable target

2013-02-19 Thread Clinton Stimpson
/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software

Re: [CMake] Adding dylib with either @rpath or absolute paths to osx cmd line executable target

2013-02-19 Thread Clinton Stimpson
doing. A per target post build rule that runs install_name_tool. With all cmake's wizardry, I sorta figured somebody must have thought about this already ;) Thanks for the tip, I feel better now that I did not overlook something! On Feb 19, 2013, at 8:58, Clinton Stimpson wrote: Have you

Re: [CMake] CPack: Packaging debug and release configurations in a single zip

2013-02-15 Thread clinton
Does that result in building the code 3 times? And why would you need to repeat the install directives? I've attached a CMakeLists.txt file for an example project that works for me without repeating install directives. Clint - Original Message - Here's a follow-up. I was unable

Re: [CMake] how to compile as 32bit on a 64bit Linux host ?

2013-02-15 Thread clinton
Or simply specify -m32 at the first configure CFLAGS=-m32 CXXFLAGS=-m32 cmake ../src find_library() works correctly if you do that, and it automatically detects if the 32 bit libraries are in /usr/lib32 or /usr/lib. Clint - Original Message - Hello, On 15/02/13 15:41, Martin

Re: [cmake-developers] Fwd: [Bug 894805] Re: QT_IMPORTS_DIR is not defined when no QML plugins are installed

2013-02-07 Thread Clinton Stimpson
...@packages.qa.debian.org ** Branch linked: lp:ubuntu/raring-proposed/cmake -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html

Re: [cmake-developers] Fwd: [Bug 894805] Re: QT_IMPORTS_DIR is not defined when no QML plugins are installed

2013-02-07 Thread Clinton Stimpson
On Thursday, February 07, 2013 05:51:59 PM Stephen Kelly wrote: Clinton Stimpson wrote: This is interesting... The intent of FindQt4.cmake is to find the Qt installation so it can be used. But in that bug report, the QT_IMPORTS_DIR variable is being used to determine the qt_dir/imports

Re: [CMake] CPack: Packaging debug and release configurations in a single zip

2013-02-07 Thread Clinton Stimpson
;/ # other config project ${CMAKE_BINARY_DIR}/SecondaryBuildTree;${CMAKE_PROJECT_NAME};ALL;/ ) endif() -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- Powered by www.kitware.com Visit other Kitware open-source projects

[CMake] CPack DEB dependencies

2013-01-28 Thread Clinton Stimpson
to fix this, either in cpack or in my cpack config? At a minimum, I think all I really need is the 32 bit libc.so.6. -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- Powered by www.kitware.com Visit other Kitware open-source projects

Re: [CMake] CPack DEB dependencies

2013-01-28 Thread Clinton Stimpson
On Monday, January 28, 2013 11:59:46 AM Clinton Stimpson wrote: When I try installing a cpack generated .rpm package on another machine, it also installs a handful of other dependent packages (including the 32 bit libc.so.6 for one of the 32 bit executables among all the 64 bit ones

Re: [CMake] CPack DEB dependencies

2013-01-28 Thread Clinton Stimpson
On Monday, January 28, 2013 10:07:04 PM Eric Noulard wrote: 2013/1/28 Clinton Stimpson clin...@elemtech.com: When I try installing a cpack generated .rpm package on another machine, it also installs a handful of other dependent packages (including the 32 bit libc.so.6 for one of the 32

Re: [cmake-developers] Review request: Qt4 interface includes and defines (Was Re: Interface includes and defines plumbing)

2013-01-07 Thread Clinton Stimpson
this to master! Great, thanks! I've pushed two new branches to my gitorious clone. I also re-pushed the qt4-target-depends branch to add INTERFACE_INCLUDE_DIRECTORIES and INTERFACE_COMPILE_DEFINTIONS to the Qt 4 targets. Alex, Clinton, could you review before I merge to next

[Cmake-commits] CMake branch, next, updated. v2.8.10.2-1438-g7e9d998

2013-01-07 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7e9d998fe3afad833d1e32d3c0c3a1bc47f086f9 commit 7e9d998fe3afad833d1e32d3c0c3a1bc47f086f9 Merge: 427d2bd 4b9ec00 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Mon Jan 7 14:06:27 2013 -0500 Commit: CMake Topic Stage

Re: [cmake-developers] Review request: qt4-target-depends

2012-12-31 Thread clinton
to specify the location of the private dependencies? Maybe we can always use imported targets in FindQt4.cmake, then end up with one place to specify public private dependencies. Clint Clint - Original Message - Hi there (Alex/Clinton), I've added a branch to the stage

Re: [cmake-developers] Review request: qt4-target-depends

2012-12-31 Thread Clinton Stimpson
ones too because a custom built Qt could be without rpaths. But the ones I checked seem to be fine. So, +1 for the patch. -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- Powered by www.kitware.com Visit other Kitware open-source projects

Re: [CMake] Making swig wrapper depend on the involved headers

2012-12-19 Thread Clinton Stimpson
foo.i) -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- 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

Re: [CMake] Testing Qt 5 RC 1 CMake files

2012-12-11 Thread Clinton Stimpson
and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- Powered by www.kitware.com Visit other

Re: [CMake] Poor performance of copy_if_different

2012-11-06 Thread Clinton Stimpson
about using plain cmake -E copy ... and rely on the timestamp check done by a custom command (add_custom_command()). You need to make sure the input/ouput parts of the custom command are set correctly so it can do a timestamp check. -- Clinton Stimpson Elemental Technologies, Inc Computational

Re: [CMake] Poor performance of copy_if_different

2012-11-06 Thread Clinton Stimpson
with it? Also would I add the custom commands to the custom target? On Tue, Nov 6, 2012 at 11:11 AM, Clinton Stimpson clin...@elemtech.com wrote: On Tuesday, November 06, 2012 11:06:45 AM Robert Dailey wrote: I use ${CMAKE_COMMAND} -E copy_if_different to copy DLL files to my binary output directory

Re: [CMake] Poor performance of copy_if_different

2012-11-06 Thread Clinton Stimpson
Try this: add_custom_command( OUTPUT ${bin_outputs} COMMAND ${copy_commands} DEPENDS ) On Tuesday, November 06, 2012 11:50:54 AM Robert Dailey wrote: Thanks Clinton, Here is what I have so far: project( copy_dlls ) set( copycmd ${CMAKE_COMMAND

Re: [CMake] Poor performance of copy_if_different

2012-11-06 Thread Clinton Stimpson
:54 AM, Clinton Stimpson clin...@elemtech.com wrote: Try this: add_custom_command( OUTPUT ${bin_outputs} COMMAND ${copy_commands} DEPENDS ) On Tuesday, November 06, 2012 11:50:54 AM Robert Dailey wrote: Thanks Clinton, Here

Re: [CMake] Poor performance of copy_if_different

2012-11-06 Thread Clinton Stimpson
FORCE ) endif() Or some code to strip out types from CMAKE_CONFIGURATION_TYPES except for debug and release. So if it was empty to begin with, it could stay empty. On Tue, Nov 6, 2012 at 12:41 PM, Clinton Stimpson clin...@elemtech.com wrote: You could base your logic

Re: [CMake] GenerateExportHeader for module library

2012-11-01 Thread Clinton Stimpson
On Nov 1, 2012, at 8:01 AM, Stephen Kelly wrote: Gregoire Aujay wrote: Hello, I am doing my tests with visual 2008 and mingw. As far as I understand a module is like a shared library that cannot be linked. Instead it is dynamically loaded and then we find and use symbols in it. It is

[Cmake-commits] CMake branch, next, updated. v2.8.10-687-ge9b41f4

2012-11-01 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e9b41f45be1b137ad4c937c7b7a064c7e4504b60 commit e9b41f45be1b137ad4c937c7b7a064c7e4504b60 Merge: f9e5b82 05ae6fe Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Thu Nov 1 13:17:46 2012 -0400 Commit: CMake Topic Stage

[Cmake-commits] CMake branch, next, updated. v2.8.10-689-g79aee22

2012-11-01 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=79aee22598f4972c7833957e0807643c81e81e33 commit 79aee22598f4972c7833957e0807643c81e81e33 Merge: e9b41f4 bc0519b Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Thu Nov 1 14:07:43 2012 -0400 Commit: CMake Topic Stage

[Cmake-commits] CMake branch, next, updated. v2.8.9-1221-gfab4dc7

2012-10-27 Thread Clinton Stimpson
633f67c Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Sat Oct 27 13:21:58 2012 -0400 Commit: CMake Topic Stage kwro...@kitware.com CommitDate: Sat Oct 27 13:21:58 2012 -0400 Merge topic 'packagemaker-component-postflight' into next 633f67c PackageMaker: Enable postflight

[Cmake-commits] CMake branch, next, updated. v2.8.9-1223-g47df2f5

2012-10-27 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=47df2f5509e8b2326fe541ae7a24681c3a245865 commit 47df2f5509e8b2326fe541ae7a24681c3a245865 Merge: fab4dc7 a2e917f Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Sat Oct 27 22:59:44 2012 -0400 Commit: CMake Topic

Re: [cmake-developers] Incomplete gfortran library link command sometimes mysteriously occurs with MinGW/MSYS on Wine-1.5.15 platform

2012-10-25 Thread Clinton Stimpson
of Linux Links project (loll.sf.net); and the Linux Brochure Project (lbproject.sf.net). __ Linux-powered Science __ -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- Powered

Re: [cmake-developers] Incomplete gfortran library link command sometimes mysteriously occurs with MinGW/MSYS on Wine-1.5.15 platform

2012-10-25 Thread Clinton Stimpson
On Oct 25, 2012, at 9:42 PM, Bill Hoffman wrote: On Oct 25, 2012 11:15 PM, Clinton Stimpson clin...@elemtech.com wrote: On Oct 25, 2012, at 4:18 PM, Bill Hoffman wrote: On 10/25/2012 6:06 PM, Alan W. Irwin wrote: I have just discovered an extremely simple test case

[cmake-developers] rpm/deb component issue

2012-10-24 Thread Clinton Stimpson
cmCPack*Generator.cxx and/or CPackDeb.cmake, CPackRPM.cmake? This is the first time I've looked at modifying those particular files. -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- Powered by www.kitware.com Visit other Kitware open

Re: [cmake-developers] rpm/deb component issue

2012-10-24 Thread Clinton Stimpson
On Wednesday, October 24, 2012 11:59:52 AM Clinton Stimpson wrote: I have a problem with the rpm deb cpack generators. I've set the following: set(CPACK_COMPONENTS_ALL_IN_ONE_PACKAGE 1) set(CPACK_DEB_COMPONENT_INSTALL 1) set(CPACK_RPM_COMPONENT_INSTALL 1) I get this implementation

Re: [cmake-developers] rpm/deb component issue

2012-10-24 Thread Clinton Stimpson
On Wednesday, October 24, 2012 09:27:38 PM Eric Noulard wrote: 2012/10/24 Clinton Stimpson clin...@elemtech.com: On Wednesday, October 24, 2012 11:59:52 AM Clinton Stimpson wrote: I have a problem with the rpm deb cpack generators. I've set the following: set

Re: [cmake-developers] rpm/deb component issue

2012-10-24 Thread Clinton Stimpson
On Wednesday, October 24, 2012 10:08:29 PM Eric Noulard wrote: 2012/10/24 Clinton Stimpson clin...@elemtech.com: On Wednesday, October 24, 2012 09:27:38 PM Eric Noulard wrote: 2012/10/24 Clinton Stimpson clin...@elemtech.com: On Wednesday, October 24, 2012 11:59:52 AM Clinton Stimpson

Re: [cmake-developers] Review request: FindQt4-nonfatal-if-Qt5-found

2012-10-23 Thread Clinton Stimpson
pushed the FindQt4-nonfatal-if-Qt5-found branch, and before merging it to next, I'd like some review (Alex? Clinton?). Thanks! Steve. -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages

[Cmake-commits] CMake branch, next, updated. v2.8.9-1189-gc52d7f9

2012-10-23 Thread Clinton Stimpson
c52d7f9f742174c0fdb53ebe7732814d08daca96 Merge: 0fe44df 14561e3 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Tue Oct 23 11:34:56 2012 -0400 Commit: CMake Topic Stage kwro...@kitware.com CommitDate: Tue Oct 23 11:34:56 2012 -0400 Merge topic 'cpack-rez-error' into next

Re: [CMake] cmake on Windows x64

2012-10-15 Thread Clinton Stimpson
On Monday, October 15, 2012 01:37:42 PM John Drescher wrote: Having CMAKE_SYSTEM_PROCESSOR be x86 for a 64-bit build is very inconvenient when detecting machine-dependent compiler flags, constructing directory names for outputs based on configuration, configuring third party search

Re: [CMake] QT4_WRAP_CPP and Implicit Dependencies

2012-10-12 Thread Clinton Stimpson
If you run moc on Main.h, which includes Dum.h, moc doesn't even open Dum.h to scan its contents. That tells me there is no way that moc would be required to rescan Main.h if Dum.h is modified. Clint On Oct 10, 2012, at 10:32 PM, Miller, Frank wrote: Greetings, Suppose we have a header

Re: [cmake-developers] FindQt4 DBus framework problem on the Mac

2012-09-06 Thread Clinton Stimpson
. The patch to FindQt4 is fine with me. -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages

Re: [cmake-developers] FindQt4 DBus framework problem on the Mac

2012-09-06 Thread Clinton Stimpson
recent in your book? (If I upgrade to 4.8.2 will the problem also just go away...?) On Thu, Sep 6, 2012 at 3:55 PM, Clinton Stimpson clin...@elemtech.com wrote: On Thursday, September 06, 2012 03:17:33 PM David Cole wrote: I still get bit by issues with QtDBus when building VTK with Qt

[Cmake-commits] CMake branch, next, updated. v2.8.9-348-g44f126a

2012-09-04 Thread Clinton Stimpson
44f126ab785f881dc3582fea137f9f948e6506d8 Merge: 3642bb0 52ec845 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Tue Sep 4 10:53:32 2012 -0400 Commit: CMake Topic Stage kwro...@kitware.com CommitDate: Tue Sep 4 10:53:32 2012 -0400 Merge topic 'cmake-gui-interrupt-error

Re: [CMake] RPATH not set for first build library

2012-08-25 Thread Clinton Stimpson
This doesn't look like a cmake bug to me. Someone tried to fix dlopen() for this case you are demonstrating, when the --enable-new-dtags linker flag is used. http://sources.redhat.com/ml/libc-hacker/2002-10/msg00048.html But the patch was rejected because it was by design.

Re: [CMake] CMake files for static builds of Qt 5

2012-08-22 Thread Clinton Stimpson
dependencies themselves, and so that I don't have to maintain the list 'artificially' in the cmake files in Qt either. However, there are issues, see below: On Tuesday, August 21, 2012 16:52:19 Stephen Kelly wrote: On Tuesday, August 21, 2012 08:21:01 Clinton Stimpson wrote: On Tuesday

Re: [cmake-developers] Porting QtDialog to Qt 5

2012-08-21 Thread Clinton Stimpson
/CMakeLists.txt:20 (qt5_wrap_ui): Unknown CMake command qt5_wrap_ui. Call Stack (most recent call first): Source/QtDialog/CMakeLists.txt:57 (QT4_WRAP_UI) Any ideas? -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- Powered by www.kitware.com

Re: [cmake-developers] Porting QtDialog to Qt 5

2012-08-21 Thread Clinton Stimpson
On Tuesday, August 21, 2012 07:23:05 PM Stephen Kelly wrote: Clinton Stimpson wrote: On Tuesday, August 21, 2012 11:18:44 AM Stephen Kelly wrote: Hi, I've pushed the qt5-qtdialog-port branch to stage. It makes it possible to build the QtDialog with Qt 5 (and some other clean-ups). I

[Cmake-commits] CMake branch, next, updated. v2.8.9-115-g9ae27d4

2012-08-16 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9ae27d461399f6bed55d2fa13df0eea7cb2f88e1 commit 9ae27d461399f6bed55d2fa13df0eea7cb2f88e1 Merge: 690d1ae 35c6ae8 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Thu Aug 16 09:34:16 2012 -0400 Commit: CMake Topic

Re: [cmake-developers] qt4_use_modules

2012-08-15 Thread Clinton Stimpson
) endif() Previously, I could do target_link_libraries(cmake-gui CMakeLib ${QT_QTMAIN_LIBRARY} ${QT_LIBRARIES}) and on those platforms without qtmain, the variable is simply empty. Besides that question, the patch looks fine to me. -- Clinton Stimpson Elemental Technologies, Inc Computational

[Cmake-commits] CMake branch, next, updated. v2.8.9-96-geccdbc8

2012-08-15 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=eccdbc8b8da8a3d45f519858ca0639cffbd40ffb commit eccdbc8b8da8a3d45f519858ca0639cffbd40ffb Merge: 65034b0 4a772a1 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Wed Aug 15 20:18:43 2012 -0400 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v2.8.9-98-gf0c775c

2012-08-15 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f0c775c579b734d07e00f6a4d2fc9b6334356379 commit f0c775c579b734d07e00f6a4d2fc9b6334356379 Merge: eccdbc8 5a6a3d4 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Wed Aug 15 20:21:57 2012 -0400 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v2.8.9-100-g1aba075

2012-08-15 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1aba075e16a5cb58bfa9bba472e1e6465709b2e3 commit 1aba075e16a5cb58bfa9bba472e1e6465709b2e3 Merge: f0c775c 213a9e5 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Wed Aug 15 20:25:37 2012 -0400 Commit: CMake Topic

Re: [CMake] CMake is unable to find QtCore!

2012-08-13 Thread Clinton Stimpson
Did you make the mistake of relocating your Qt installation? You could run qmake -query to see the paths it prints out, to make sure it matches your installation. Clint On Aug 12, 2012, at 12:59 PM, Toronto Andrew wrote: Yes to both John, I did point the CMake gui to the position of the

Re: [cmake-developers] qt4_use_modules

2012-08-11 Thread Clinton Stimpson
On Aug 11, 2012, at 10:36 AM, Alexander Neundorf wrote: On Friday 10 August 2012, Stephen Kelly wrote: David Cole wrote: I assume it's the qt4_use_modules branch on the stage? Yes, sorry, I should have pointed that out. What was the plan with the more generic target_use_package() or

[cmake-developers] unicode support

2012-08-11 Thread clinton
Is there any plan to have CMake support unicode? If so, how? Its quite broken on Windows because it uses all the ANSI apis. Having CMake support unicode would make it easier for me to test whether my applications support unicode. Thanks, Clint -- Powered by www.kitware.com Visit other

Re: [CMake] Disabling C for C++-only projects

2012-07-25 Thread Clinton Stimpson
fixed in FindQt4 since CMake 2.8.6. -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic

Re: [cmake-developers] After using CMake 2.8 VS produces QT Add-in error

2012-07-10 Thread Clinton Stimpson
-- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- 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: http

[Cmake-commits] CMake branch, next, updated. v2.8.8-3388-g334ae70

2012-07-09 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=334ae7044d368bba84d65fc8fc9e1231f5671b89 commit 334ae7044d368bba84d65fc8fc9e1231f5671b89 Merge: 575ecd0 374b9b9 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Mon Jul 9 12:18:05 2012 -0400 Commit: CMake Topic Stage

[Cmake-commits] CMake branch, next, updated. v2.8.8-3376-g346ff0d

2012-07-06 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=346ff0d809f41996037e3cd736538afd58ff11cc commit 346ff0d809f41996037e3cd736538afd58ff11cc Merge: 89e4d4a ecfc53d Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Fri Jul 6 18:57:52 2012 -0400 Commit: CMake Topic Stage

Re: [cmake-developers] Use OBJECT_DEPENDS in qt4_generate_moc() ?

2012-07-05 Thread Clinton Stimpson
() already added the needed dependency information. It should already have this: mocable.h - moc_mocable.cpp - moc_mocable.o or mocable.h - mocable.moc - mocable.cpp (includes mocable.moc) Why do we need the extra dependency like this? mocable.h - mocable.cpp -- Clinton Stimpson Elemental

Re: [cmake-developers] Use OBJECT_DEPENDS in qt4_generate_moc() ?

2012-07-05 Thread Clinton Stimpson
On Thursday, July 05, 2012 06:20:56 PM Alexander Neundorf wrote: On Thursday, 5. July 2012 17:37:21 Clinton Stimpson wrote: On Friday, June 15, 2012 09:56:51 PM Alexander Neundorf wrote: Hi, attached is a small patch which sets the OBJECT_DEPENDS property of a moced file

[Cmake-commits] CMake branch, next, updated. v2.8.8-3369-g2131259

2012-07-05 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=2131259bf00f7ed3575ff0cf3d862dc2a731096a commit 2131259bf00f7ed3575ff0cf3d862dc2a731096a Merge: 260a24a ac7a193 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Thu Jul 5 14:49:04 2012 -0400 Commit: CMake Topic Stage

Re: [cmake-developers] Improvements to Qt4 macros

2012-06-20 Thread Clinton Stimpson
On Jun 20, 2012, at 5:51 AM, Rolf Eike Beer wrote: Hi, while wrestling with QtDBus today I found out the hard way (i.e. reading the source) that QT4_ADD_DBUS_INTERFACE is much more powerful than its documentation tells. To fix that the first patch now tells about the properties you may

[Cmake-commits] CMake branch, next, updated. v2.8.8-2954-g15dc69a

2012-05-29 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=15dc69afa4dd3c8670b6e0472af9c08ec03c5440 commit 15dc69afa4dd3c8670b6e0472af9c08ec03c5440 Merge: 0126bc8 ad7c80c Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Tue May 29 16:58:14 2012 -0400 Commit: CMake Topic

Re: [CMake] fixup_bundle() doesn't like libglut.3.dylib

2012-05-22 Thread Clinton Stimpson
Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com

Re: [cmake-developers] Regression when using multiple Qt installations (FindQt4.make)

2012-05-07 Thread Clinton Stimpson
the ${qt_headers} and tell me what you have? -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic

Re: [cmake-developers] Regression when using multiple Qt installations (FindQt4.make)

2012-05-07 Thread Clinton Stimpson
On Monday, May 07, 2012 08:43:07 am Benoit Walter wrote: On Monday 07 May 2012, Clinton Stimpson wrote: On Sunday, May 06, 2012 04:27:17 am Benoit Walter wrote: Hi CMake developers, as I need to maintain different projects using different Qt versions, I needed to have a look

Re: [cmake-developers] Regression when using multiple Qt installations (FindQt4.make)

2012-05-07 Thread Clinton Stimpson
On Monday, May 07, 2012 09:14:55 am Benoit Walter wrote: On Monday 07 May 2012, you wrote: On Monday, May 07, 2012 08:43:07 am Benoit Walter wrote: On Monday 07 May 2012, Clinton Stimpson wrote: On Sunday, May 06, 2012 04:27:17 am Benoit Walter wrote: Hi CMake developers

Re: [CMake] relocatable build directory: howto?

2012-05-05 Thread Clinton Stimpson
On May 5, 2012, at 5:52 AM, Dave Abrahams wrote: on Sat May 05 2012, Michael Wild themiwi-Re5JQEeQqe8AvxtiuMwx3w-AT-public.gmane.org wrote: On 05/05/2012 07:25 AM, Dave Abrahams wrote: I need to preserve the built-but-not-yet-installed state of some projects, and the tool I'm driving

Re: [cmake-developers] Target usage requirements and conventions

2012-05-03 Thread Clinton Stimpson
On Thursday, May 03, 2012 10:21:10 am Stephen Kelly wrote: On 05/03/2012 06:19 PM, Ben Boeckel wrote: On Thu, May 03, 2012 at 09:35:44 -0600, Clinton Stimpson wrote: The include, defines, etc... can be properties on a target when when target_use_target() is used, it could extract those

[Cmake-commits] CMake branch, next, updated. v2.8.8-2765-g7b49ab9

2012-04-30 Thread Clinton Stimpson
;a=commitdiff;h=7b49ab966dd0a0f80c15232fde1641b3818c529d commit 7b49ab966dd0a0f80c15232fde1641b3818c529d Merge: 0130ed8 2c050a2 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Mon Apr 30 15:13:02 2012 -0400 Commit: CMake Topic Stage kwro...@kitware.com CommitDate: Mon Apr 30 15:13

Re: [CMake] CCTray like tool for CDash?

2012-04-18 Thread Clinton Stimpson
projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake -- Clinton Stimpson Elemental Technologies

[Cmake-commits] CMake branch, next, updated. v2.8.7-3099-gf46e7a2

2012-03-07 Thread Clinton Stimpson
, below. - Log - http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f46e7a2b986757443f97209c040f220e46391192 commit f46e7a2b986757443f97209c040f220e46391192 Merge: 6241f39 2c601c1 Author: Clinton Stimpson clin...@elemtech.com

Re: [cmake-developers] Making GUI applications by default

2012-03-05 Thread Clinton Stimpson
On Mar 4, 2012, at 3:29 PM, Stephen Kelly wrote: Stephen Kelly steveire@... writes: Brad King wrote: The implementation is not what I had in mind when I said implies the platform-specific property. This should be its own property that one can set/get normally with no special

Re: [cmake-developers] Usage of Qt4 for Tests

2012-02-29 Thread Clinton Stimpson
for QtAutomoc looks good. -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- 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

[Cmake-commits] CMake branch, next, updated. v2.8.7-2951-gab27378

2012-02-29 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ab273783b49f4d3d9b72c5c1d3f83c31638fb425 commit ab273783b49f4d3d9b72c5c1d3f83c31638fb425 Merge: 7688b6e ab9661c Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Wed Feb 29 09:56:58 2012 -0500 Commit: CMake Topic

Re: [cmake-developers] Convention driven CMAKE_USE_PACKAGE macro

2012-02-24 Thread Clinton Stimpson
...) target_link_libraries(foo bar) And that could automatically add -DFOO_DEFINE and -I/path/to/foo/include to the bar executable. So basically any DEPENDENT_property can be pushed to property on the other target. -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software

Re: [cmake-developers] Convention driven CMAKE_USE_PACKAGE macro

2012-02-24 Thread Clinton Stimpson
On Feb 24, 2012, at 12:00 PM, Brad King wrote: On 2/24/2012 1:56 PM, Clinton Stimpson wrote: What about a more generic approach like the following? add_library(foo IMPORTED ...) set_target_properties(foo PROPERTIES DEPENDENT_COMPILE_DEFINITIONS FOO_DEFINE

[Cmake-commits] CMake branch, next, updated. v2.8.7-2850-g1427ddc

2012-02-24 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1427ddc20da9c47a85a639e004581fe85ccd183d commit 1427ddc20da9c47a85a639e004581fe85ccd183d Merge: 60cfbf0 52e8279 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Fri Feb 24 10:09:41 2012 -0500 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v2.8.7-2848-g60cfbf0

2012-02-23 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=60cfbf02b20d8d117f60f871ec352b954af795c9 commit 60cfbf02b20d8d117f60f871ec352b954af795c9 Merge: 547382e 672e3bb Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Thu Feb 23 18:04:57 2012 -0500 Commit: CMake

Re: [cmake-developers] Build faild on Darwin? Don't know why?

2012-02-20 Thread Clinton Stimpson
On Feb 20, 2012, at 8:21 AM, David Cole wrote: On Mon, Feb 20, 2012 at 9:25 AM, Brad King brad.k...@kitware.com wrote: On 2/18/2012 5:47 PM, Eric Noulard wrote: My recent commit on CPack-dynamicDocSection

[Cmake-commits] CMake branch, next, updated. v2.8.7-2527-ge36cce1

2012-02-08 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e36cce123f4e5449fe6f8bfa22d5f3881d94e533 commit e36cce123f4e5449fe6f8bfa22d5f3881d94e533 Merge: f2b7a47 cbdfcc6 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Wed Feb 8 20:42:18 2012 -0500 Commit: CMake Topic Stage

[Cmake-commits] CMake branch, next, updated. v2.8.7-2529-g267cc72

2012-02-08 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=267cc72af16065a85f935d6e046d6cf8a604fc28 commit 267cc72af16065a85f935d6e046d6cf8a604fc28 Merge: e36cce1 7a6d279 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Wed Feb 8 21:02:12 2012 -0500 Commit: CMake Topic Stage

[Cmake-commits] CMake branch, next, updated. v2.8.7-2177-gaababf9

2012-01-20 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=aababf9947a4e35ee708c40f2b9146bbf8f887a2 commit aababf9947a4e35ee708c40f2b9146bbf8f887a2 Merge: 35e2dbd 98d2031 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Sat Jan 21 00:03:39 2012 -0500 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v2.8.7-2158-g9d9a838

2012-01-19 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9d9a838b2e83b29953f787ca1b0148e38874287a commit 9d9a838b2e83b29953f787ca1b0148e38874287a Merge: 7216188 880139a Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Thu Jan 19 20:10:59 2012 -0500 Commit: CMake Topic

[Cmake-commits] CMake branch, next, updated. v2.8.7-2160-gf0f1c4a

2012-01-19 Thread Clinton Stimpson
- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f0f1c4a7e0b1a8838407c090c58ca8e13e2ff62f commit f0f1c4a7e0b1a8838407c090c58ca8e13e2ff62f Merge: 9d9a838 0d96dec Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Fri Jan 20 00:03:24 2012 -0500 Commit: CMake Topic

Re: [CMake] FindQt4 with Official Nokia install

2012-01-09 Thread Clinton Stimpson
. But perhaps you're hitting a bug that was fixed in CMake 2.8.6. -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC www.csimsoft.com -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please

[Cmake-commits] CMake branch, next, updated. v2.8.6-2339-gbda2898

2012-01-02 Thread Clinton Stimpson
bda28983cdcdd91461ca4bb026a848fed80d6279 Merge: 364dd29 131eed6 Author: Clinton Stimpson clin...@elemtech.com AuthorDate: Mon Jan 2 13:10:32 2012 -0500 Commit: CMake Topic Stage kwro...@kitware.com CommitDate: Mon Jan 2 13:10:32 2012 -0500 Merge topic 'interrupt-bug-12649' into next

Re: [CMake] Interrupt problems in cmake-gui

2011-12-30 Thread Clinton Stimpson
Yeah it does look like synchronization is needed to fix this. The current interrupt functionality depends on message output or progress reporting to actually process the interrupt on the worker thread, which isn't good enough. I'm not sure if you've considered this, but it seems simpler to

Re: [CMake] Fwd: Fwd: cpack DragNDrop on OSX 10.7

2011-12-20 Thread Clinton Stimpson
/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake -- Clinton Stimpson Elemental Technologies, Inc Computational Simulation Software, LLC

Re: [cmake-developers] QtAutomoc dashboard failure?

2011-12-19 Thread Clinton Stimpson
On Monday, December 19, 2011 02:28:37 pm Alexander Neundorf wrote: On Monday 19 December 2011, Clinton Stimpson wrote: On Monday, December 19, 2011 01:59:37 pm Alexander Neundorf wrote: On Monday 19 December 2011, David Cole wrote: Alex, Can you take a look at this and see

Re: [cmake-developers] QtAutomoc dashboard failure?

2011-12-19 Thread Clinton Stimpson
/cmake/Tests/QtAutomoc/codeeditor.h ! Better include moc_codeeditor.cpp for a robust build. This is what it should say, and this means that the included codeeditor.moc has been created, otherwise it would not have compiled. Clinton, can you please send me the Tests/QtAutomoc/ build directory

<    1   2   3   4   5   6   7   8   9   >