Qt 6.11 is out! See what's new in the release
blog
How to separate "wince" and "windows" in .pro files?
Mobile and Embedded
2
Posts
2
Posters
741
Views
1
Watching
-
I use printsupport module in my project.but my wince library does not support it, So When I compile windows7 version,I need to include it ,in WinCE version I want to exclude it.
I do not know how to do it in .pro file. I search the document, it seems that ,only win32/unix/mac can be used. -
for qt 5.3
...
TARGET = foowince*: {
SIGNATURE_FILE = somepath\customSignature.pfx
}
...