[CMake] How do I enter an empty string to a cmake -i variable request?

2012-08-30 Thread Randolph M . Fritz
-- Randolph M. Fritz • rfr...@lbl.gov Environmental Energy Technologies Division • Lawrence Berkeley Labs -- 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: ht

Re: [CMake] [Development] CMake for Qt5: Cross Compilation for Windows using MinGW-w64

2012-08-30 Thread Stephen Kelly
On Thursday, August 30, 2012 23:53:27 Loaden wrote: > Hi, there! > I am try to cross compilation qt5 apps on Linux. > By this wiki point: http://www.cmake.org/Wiki/CmakeMingw > I can make the simple qt5 demo works. This issue is solved. I forgot reply-to-all. http://lists.qt-project.org/pipermail

Re: [CMake] Valgrind does not find tests

2012-08-30 Thread festner
I found the my error Better say, I found out that the error is already corrected using cmake + ctest >= version 2.8.2 ! Sorry and thanks for your help ! -- View this message in context: http://cmake.3232098.n2.nabble.com/Valgrind-does-not-find-tests-tp7581046p7581449.html Sent from the CM

[CMake] CMake for Qt5: Cross Compilation for Windows using MinGW-w64

2012-08-30 Thread Loaden
Hi, there! I am try to cross compilation qt5 apps on Linux. By this wiki point: http://www.cmake.org/Wiki/CmakeMingw I can make the simple qt5 demo works. main.cpp > #include > #include > > int main(int argc, char *argv[]) > { > QApplication a(argc, argv); > QLabel *label = new QLabel("

[CMake] CMake for Qt5: Does exist set(CMAKE_AUTOUIC ON) support? or plan?

2012-08-30 Thread Loaden
set(CMAKE_AUTOMOC ON) is great. But for now I have to use qt5_wrap_ui macros. e.g. cmake_minimum_required(VERSION 2.8.9 FATAL_ERROR) > > project(testproject) > > # Find includes in corresponding build directories > set(CMAKE_INCLUDE_CURRENT_DIR ON) > # Instruct CMake to run moc automatically when