Compiling asm file within Qt Creator
Hello everyone.
I am developing a project in Qt Creator for the University I work at, but I have encountered a problem I don't know how to solve, I hope someone can give me the answer.
I am including the source files of the AngelScript scripting library in the project, but one of the files is an assembly file with .S extension, and it does not seem to be compiled when I build the project. Is there a way to tell Qt Creator to build the ASM file, or is this feature not supported?
Thank you all for your attention.
Re: Compiling asm file within Qt Creator
Hav you tried SOURCES += yourfile.S in your *.pro file?
Re: Compiling asm file within Qt Creator
Well, sometimes things are way easier than you might think. Sorry for the question, it is the first time that I use Qt (usually code in Cocoa for Mac, but this time I needed it to be multiplatform).
Your suggestion worked, thank you very much. The problem is that adding the .S file through the "Add existing files..." menu added it to "Other Files" and it was not getting compiled, but doing it editing the .pro file by hand solves it. Thank you again.
Re: Compiling asm file within Qt Creator
I did the same but can't get my project compiled. Would you letting us know what else you have set up on your .pro file and project settings?