I have successfully compiled the project through command line
.But i want set library(.a) file through command line .
It successfully build with below command
/Users/Mahen/Documents/workspace/TestingApplication/Test/Test.xcodeproj -configuration
Debug build
Now I want set Linking .a file through command line.
I have try set "OTHER_LDFLAGS" option with
-force_load /Users/Mahen/Documents/workspace/Test.iOS/build/Debug-iphoneos/libTest.a -lstdc++
But it couldn't load , Can you suggest the right way Linking .a files through the command line?
Thanks