Code::Blocks Forums

User forums => General (but related to Code::Blocks) => Topic started by: chameleon on February 24, 2010, 02:23:55 am

Title: Special compile scripts (related to Qt)
Post by: chameleon on February 24, 2010, 02:23:55 am
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:
Quote
c:\qt\2010.02\qt\bin\uic.exe -o $file_dir/qt_temp/ui_$file_name.h $file
for file aaa.h:
Quote
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?
Title: Re: Special compile scripts (related to Qt)
Post by: stahta01 on February 24, 2010, 07:06:10 pm
No idea; but look here it might help

http://wiki.codeblocks.org/index.php?title=Adding_support_for_non_C/C%2B%2B_files_to_the_build_system

Tim S.