Hi all:
I've added my IR remote controller support into Qt SDK, and in order to
build my own driver, at first I added
QMakeVar add irctrl-drivers "ctc_forerunner"
into configure file, and then added
contains( irctrl-drivers, ctc_forerunner ) {
HEADERS += embedded/qirctrlctc_forerunner_qws_ctcl.h
SOURCES += embedded/qirctrlctc_forerunner_qws_ctcl.cpp
}

into embedded.pri file to make driver source files compiled. Recompile
Qt after touching .configured file, no error message while compiling, but it seems
everything I modifed and added is compiled except these two driver source files
mentioned above. How to make my changes to configure file take effect?
* configure and .configured are under Qt's root folder
* embedded.pri is under src/gui/embedded relative to Qt's root folder