Just wondering a bit about .pro files:
Qt Code:
win32 { SOURCES += paintwidget_win.cpp }To copy to clipboard, switch view to plain text mode
I'm reading the above to mean not just windows but 32bit windows systems, otherwise it will be ignored. How do you specify for 64bit?The above code will add the paintwidget_win.cpp file to the sources listed in the generated Makefile if qmake is used on a Windows platform. If qmake is used on a platform other than Windows, the define will be ignored.
Bookmarks