I have a cmake project with the typical build
folder setup. I would like to instruct cmake to append this line anywhere into its generated Makefile:
../make_include/my_stuff.defs
I imagine I could tail this onto the Makefile myself, but I feel like that would cause it to continually be marked as dirty and rebuild. Any help here?
I have seen solutions (How to get CMake to use existing Makefile?) which use an external project command but I would like something more simple / dumb then that.