Hi all,
I am compiling my application for the code is like below
#import <pjsua-lib/pjsua.h>
@implementation TestPjsipAppDelegate
@synthesize window;
- (void)applicationDidFinishLaunching

UIApplication *)application
{
pjsua_acc_id acc_id;
pj_status_t status;
/* Must init PJLIB first: */
status = pj_init();
// Override point for customization after application launch
[window makeKeyAndVisible];
}
.
.
.
I am getting below error while compilation..
_Pj_init",referenced from:
Please give me some suggestion...