How do I add capabilities to my executable in qt for symbian?

How do I add capabilities to my executable?

Capabilities are requested/declared in the executable's .pro file using the TARGET.CAPABILITY keyword (in Symbian scope). The code fragment below shows how to specify the most common "user" capabilities:

symbian:
{
TARGET.CAPABILITY = NetworkServices LocalServices Location ReadUserData WriteUserData UserEnvironment
}

你可能感兴趣的:(user,File,qt,Symbian)