fix for mac linking
This commit is contained in:
parent
e61ebff406
commit
d56977ac5b
1 changed files with 4 additions and 1 deletions
|
@ -182,9 +182,12 @@ int main ( int argc, char** argv )
|
|||
#endif
|
||||
|
||||
// init resources
|
||||
#if defined ( __APPLE__ ) || defined ( __MACOSX )
|
||||
Q_INIT_RESOURCE(resources);
|
||||
#else
|
||||
extern int qInitResources();
|
||||
qInitResources();
|
||||
|
||||
#endif
|
||||
|
||||
// TEST -> activate the following line to activate the test bench,
|
||||
//CTestbench Testbench ( "127.0.0.1", LLCON_DEFAULT_PORT_NUMBER );
|
||||
|
|
Loading…
Reference in a new issue