I have 3 object files :
main.o
general.o
specific.o
in main.o there is a call to function : void handle(void),
general.o implement a generic functionality to handle() ,
specific.o might or might not have an implementation to handle() ,
I want to specify in my cmake that "search to link handle with specific.o if fail then try with general.o"
Is that possible ?