Reputation: 17530
I have a framework which I only want to link under Debug configuration, i.e., I have to make sure it is not linked under Release configuration. How can I do that?
Upvotes: 13
Views: 2501
Reputation: 50089
no need for to targets or any ifdef stuff.
linker flags
for the config onlyworks for static libs and dylibs and also frameworks
Upvotes: 25