So I am using pre-implemented project call FreeRDP. I have build the project correctly and it works. I want to use some external libraries and want to manage them using cocoa pods. I go through the process of creating my pod file and it goes through successful. It's not until that I build that I get a error saying that the library -lPods can not be found.
I can't seem to find a good solution from Cocoapods that resolves this. Would anyone know how to fix this?
My pod file looks like this :
platform :ios, "6.0"
target :Test do pod 'EasyTableView', '~> 1.1.1'
end