--
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
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
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
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("
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