Implemented ticket #1052: ipjsystest: pjsystest for iPhone OS
* ipjsystest:
  * xcode project directory for ipjsystest application
* pjsystest:
  * Modify pjsystest to support appending path during runtime



git-svn-id: https://svn.pjsip.org/repos/pjproject/branches/projects/iphone@3129 74dad513-b988-da41-8d7b-12977e46ad98
diff --git a/pjsip-apps/src/ipjsystest/main.m b/pjsip-apps/src/ipjsystest/main.m
new file mode 100644
index 0000000..e7c80d1
--- /dev/null
+++ b/pjsip-apps/src/ipjsystest/main.m
@@ -0,0 +1,17 @@
+//
+//  main.m
+//  ipjsystest
+//
+//  Created by Liong Sauw Ming on 3/20/10.
+//  Copyright Teluu Inc. (http://www.teluu.com) 2010. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+int main(int argc, char *argv[]) {
+    
+    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
+    int retVal = UIApplicationMain(argc, argv, nil, nil);
+    [pool release];
+    return retVal;
+}