Stoppt die Vorratsdatenspeicherung! Jetzt klicken & handeln!Willst du auch bei der Aktion teilnehmen? Hier findest du alle relevanten Infos und Materialien:

Archive for the Category 'C++ and Qt'

Qt 4.3: Plattformunabhängiges C++

Thursday, May 31st, 2007

QtAb sofort ist die neueste Version von Trolltech‘s Qt Toolkit als Version 4.3 für Windows (98 bis Vista), Linux und MacOS X als OpenSource (GPL) und kommerzielle Version verfügbar.

Neuerungen u.a.:

  • bessere Unterstützung für Windows Vista und MacOS X
  • QtScript – ECMA-Scripting für die ganze Qt-Applikation
  • verbesserte OpenGL- und neue Direct3D-Unterstützung
  • verbesserter Designer
  • (more…)

Qt: Automated Unit Tests with QMAKE

Tuesday, December 19th, 2006

QtYesterday I solved a little problem under Trolltech‘s Qt 4 (a platform independant C++ framework for realizing GUIs, network, fileIO very convenient with less code).

My target was to find a solution to easily setup .pro files for the unit test (/tests/tests.pro), which automatically run the unit test app after linking. So that the compilation run will be aborted, if a unit test fails.

Formerly I had to execute all unit tests manually – this was very time consuming :( (more…)