RavenBlog
Black:  ravenblack.net | me | games | books | email | wishlist | rss
Blogs:  Angryblog | As Above | MonkyBlog | Nightshade | Journals
Blimey:  SomethingAwful | Advice
Archives: Last 4 Days | June2001 | July2001 | August2001 | September2001 | October2001 | November2001 | December2001 | January2002 | February2002 | March2002 | April2002 | May2002 | June2002 | July2002 | August2002 | September2002 | October2002 | November2002 | December2002 | January2003 | February2003 | March2003 | April2003 | May2003 | June2003 | July2003 | August2003 | September2003 | October2003 | November2003 | December2003 | January2004 | February2004 | March2004 | April2004 | May2004 | June2004 | July2004 | August2004 | September2004 | October2004 | November2004 | December2004 | January2005 | February2005 | March2005 | April2005 | May2005 | June2005 | July2005 | August2005 | September2005 | October2005 | November2005 | January2006 | February2006 | March2006 | April2006 | May2006 | June2006 | July2006 | August2006 | September2006 | October2006 | November2006 | December2006 | January2007 | February2007 | March2007 | April2007 | May2007 | June2007 | July2007 | August2007 | September2007 | October2007 | November2007 | December2007 | January2008 | February2008 | March2008 | April2008 | May2008 | June2008 | July2008 | August2008 | September2008 | October2008 | November2008 | December2008 | January2009 | March2009 | April2009 | May2009 | July2009 | August2009 | September2009 | February2010 | March2010 | June2010 | July2010 | August2010 | September2010 | October2010 | November2010 | December2010 | February2011 | March2011 | April2011 | May2011 | June2011 | July2011 | August2011 | September2011 | October2011 | December2011 | March2012 | April2012 | May2012 | September2012 | December2012 | March2013 | April2013 | May2013 | June2013 | October2021


Archive August 2011
Tuesday 30 August 2011
A post to help other people encountering the same programming annoyance I just had today. Here's some keywords I was searching for: Visual C++ resource compiler RCDATA dependencies.

The problem: if you have data files in a resource file - eg.
ID_BANANAPICTURE RCDATA "banana.jpg"
... then the resource compiler doesn't recognize "banana.jpg" as a dependency. If you update banana.jpg and rebuild, your program will continue to use the old banana.jpg until you manually rebuild the resources, or change the resource file. With a jpg this probably isn't too annoying, but if you have some sort of complicated binary data structure that's generated by another program that you expect to be loaded in a specific way, it can be a huge pain in the arse that takes you three hours to figure out at what stage it went wrong. Not that I'm bitter.

The solution: swearing at the compiler! Add something like this:
#ifdef FUCK_YOU_COMPILER_I_JUST_WANT_THESE_TO_BE_DEPENDENCIES
#include "banana.jpg"
#endif
The part of the resource compiler that figures out dependencies will be fooled by this into thinking banana.jpg is a dependency (er, which it is, so it's not really fooled, but you could fool it into thinking other things are dependencies too), while the part that does the actual compiling will ignore it. Annoying problem that shouldn't exist solved in an annoying way that creates unnecessary work for you! Hooray! [00:18] [0 comments]