Issues with joining .rc/resource.h files
So I have been working on this issue for the last 4 days and I can't seem to find an answer that works. I have found some older resources on how to do this but can't find how to do this in VS2015.
I am building an MFC Ribbon Application that extends the nominal Office2007 theming with a static lib. The problem is that I want to store the resources within the lib and not within the project itself as I want to reuse this lib later with minimal overhead. I know that the theming code works perfectly because when you move the resources declarations from the lib .rc and resource.h files and put them in the projects .rc/resource.h files the libs functions work perfectly.
I know the pathing is correct within the project settings because the program compiles without warnings or errors. When you step through the code line by line when my custom theme is activated it breaks when looking for the Style.XML file.
I have gotten as far as including my lib's .rc/resource.h files within my main project's .rc file and I have added the correct path to the resources in the Configuration Properties/Resources/General/Additional Include Directories.
This, however, doesn't seem to have worked as when I unpackage the resulting .exe the resources aren't in there.
Tl;Dr How do you link/include .png/.xml resources from a static lib to an MFC project?
link to the resource I used to get this far
Any help is appreciated! Thank you!!