Qt Mobility Reference Documentation

sysinfo.pro Example File

sysinfo/sysinfo.pro
 QT       += network

 TARGET = qsysinfo
 TEMPLATE = app

 SOURCES += main.cpp\
         dialog.cpp

 HEADERS  += dialog.h
 RESOURCES = examples.qrc

 INCLUDEPATH += ../../src/systeminfo

 include(../examples.pri)
 CONFIG += mobility
 MOBILITY = systeminfo

 CONFIG += console

 win32 {
     FORMS += dialog.ui
 }

 unix: {
     linux-*: {
         maemo* {
             FORMS += dialog_landscape.ui
         } else {
             FORMS += dialog.ui
         }
     }

     mac: {
         FORMS += dialog.ui
     }
 }

 symbian {
     TARGET.CAPABILITY = LocalServices NetworkServices ReadUserData UserEnvironment Location  ReadDeviceData
     TARGET.UID3 = 0x2002ac7e
     FORMS    += dialog_s60.ui
 }
X

Thank you for giving your feedback.

Make sure it is related to this specific page. For more general bugs and requests, please use the Qt Bug Tracker.