In my project, I have files
aaa.h
aaa.ui
aaa.cpp
I want, before linker start, to run this command, only if files aaa.ui and aaa.h are changed:
for file aaa.ui:
c:\qt\2010.02\qt\bin\uic.exe -o $file_dir/qt_temp/ui_$file_name.h $file
for file aaa.h:
c:\qt\2010.02\qt\bin\moc.exe -o $file_dir/qt_temp/moc_$file_name.cpp $file
For both files, I want on right click popup menu -> build to run commands above.
But for aaa.ui there is no "build" at all in popup menu.
A hand of help please?