Unfortunately yes.
(I think he want to say something like
g++ -framework Cocoa -framework /somePath/sfml-system.framwork test.c
where somePath depends on the configuration debug vs release.
Maybe one can play with -F option but this would have other issue at runtime I think.
Am I right ? )
There is another way to handle debug/release frameworks with the same name but I have no clue how to do it with cmake (I've found nothing in the mailing list archives to help me). Moreover, I don't know how to use it with gcc (well, Google should know...).
It consists in adding a second binary to the framework (let's say sfml-system) by appending _debug to the release binary name. So the framework should looks like :
sfml-system.framework/
sfml-system (release binary)
sfml-system_debug
Versions/
:
:
So if any of you guys know how to do it please step forward. =)