I am able to build qt 5 project (.pro) on mac 10.9 successfully on xcode 5 using Run script. But when I try to see the symbols using: nm -a libmyproject.dylib
, then it shows nothing.
I exported my class using:
class __attribute__((visibility("default"))) myclass
{
public:
void mymethod()
{
}
...
};