[cmake-developers] How to work with QtDialog?

2015-02-15 Thread Robert Dailey
I'm making minor modifications to add -T support to cmake-gui. However, I'm not familiar with how to develop CMake's GUI application. Do I generate for Visual Studio 2013 (I'm on windows)? I'm able to compile the QT dialog application and run it from Visual Studio, however if I have to add new

[cmake-developers] Conflicting types for 'cmsysProcess_SetPipeNative' compiling in MinGW

2015-02-15 Thread vano
Completely puzzled by this: a declaration conflicts with... itself?! $ uname -a MINGW32_NT-6.1 IVAN-POWERPC 1.0.18(0.48/3/2) 2012-11-21 22:34 i686 Msys The error part follows, full output is attached. This happens with both cmake-3.2.0-rc1 and cmake-3.1.3. ... gcc

[cmake-developers] [PATCH] Also add xctest support for Cocoa App Bundles

2015-02-15 Thread Gregor Jasny
Signed-off-by: Gregor Jasny gja...@googlemail.com --- Modules/XCTestUtilities.cmake | 23 +- Tests/XCTest/CMakeLists.txt| 25 +- Tests/XCTest/CocoaExample/AppDelegate.h| 7 + Tests/XCTest/CocoaExample/AppDelegate.m| 18 +

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

2015-02-15 Thread rcdailey . lists
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 (below the generator chooser). --- Source/QtDialog/CMakeSetupDialog.cxx | 1 + Source/QtDialog/FirstConfigure.cxx | 18

Re: [cmake-developers] [PATCH] CPackRPM: Fix cross-building rpms

2015-02-15 Thread Domen Vrankar
I've finally had some time to read over the Tests section, and it is a bit overwhelming. I'm going to describe the use cases for my patch and perhaps you can give me some guidance on adding an actual test. There are three, maybe four use cases: 1) native rpm (e.g. x86_64) 2) noarch rpm (a

[cmake-developers] KWSys patches

2015-02-15 Thread Domen Vrankar
Hi everyone, I am having problems with a patch for Glob functionality because Glob is part of KWSys repository. I tried to register to http://review.source.kitware.com so that I would be able to commit patches to KWSys repository but after I put in my OpenID I got a Not Found error. How can I

[cmake-developers] [PATCH 1/6] Add handling for XCTest bundles

2015-02-15 Thread Gregor Jasny
An XCTest bundle is a CFBundle with a special product-type and bundle extension. It gets loaded directly into the AppBundle it should test. For more information about XCTest visit the Mac Developer library at:

[cmake-developers] [PATCH 4/6] Add XCTest helper utilities

2015-02-15 Thread Gregor Jasny
Signed-off-by: Gregor Jasny gja...@googlemail.com --- Help/manual/cmake-modules.7.rst | 1 + Help/module/XCTestUtilities.rst | 1 + Modules/XCTestUtilities.cmake | 120 3 files changed, 122 insertions(+) create mode 100644

[cmake-developers] [PATCH 6/6] Add XCTest example to test Cocoa App Bundles

2015-02-15 Thread Gregor Jasny
Signed-off-by: Gregor Jasny gja...@googlemail.com --- Tests/XCTest/CMakeLists.txt| 25 + Tests/XCTest/CocoaExample/AppDelegate.h| 7 + Tests/XCTest/CocoaExample/AppDelegate.m| 18 + Tests/XCTest/CocoaExample/Info.plist | 30 +

[cmake-developers] [PATCH 0/6] XCTest Bundles v4

2015-02-15 Thread Gregor Jasny
Hello, this series contains the latest XCTest patches. Changes since v3: Added Cocoa App Bundle Test example Added documentation to XCTestUtilities.cmake Some minor cleanups This patch set is also available on github: URL: https://github.com/gjasny/CMake.git Branch:

[cmake-developers] [PATCH 2/6] Shorten CFBundleExecutable to file name only

2015-02-15 Thread Gregor Jasny
Shorten the CFBundleExecutable in the PList file of Bundles to the file name only as it is done for Frameworks, too. Signed-off-by: Gregor Jasny gja...@googlemail.com --- Source/cmOSXBundleGenerator.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[cmake-developers] [PATCH 5/6] Add XCTest example to test Frameworks

2015-02-15 Thread Gregor Jasny
Signed-off-by: Gregor Jasny gja...@googlemail.com --- Tests/XCTest/CMakeLists.txt| 38 ++ Tests/XCTest/FrameworkExample/FrameworkExample.c | 6 Tests/XCTest/FrameworkExample/FrameworkExample.h | 1 + Tests/XCTest/FrameworkExample/Info.plist

[cmake-developers] [PATCH 3/6] Also add Platform specific Frameworks to Darwin Framework search path

2015-02-15 Thread Gregor Jasny
Otherwise find_library is unable to lookup the XCTest framework which is not located in the SDK serach path: In the 10.10 SDK the SDK frameworks are located here: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/ Developer/SDKs/MacOSX10.10.sdk/System/Library/Frameworks/