I lied. All qrc files must be included for qt to find the files..
Change-Id: Ia9e5c29cbb83127eabb0c8e19cfec936115c7260
diff --git a/wscript b/wscript
index 2ce1461..a20b70c 100644
--- a/wscript
+++ b/wscript
@@ -205,10 +205,7 @@
target = "ChronoShare",
features = "qt4 cxx cxxprogram",
defines = "WAF",
- # do not include html.qrc as we don't want it to be compiled into binary
- # qt seems to adopt a pattern of compiling every resource file into the
- # executable; if things don't work, we can use that as last resort
- source = bld.path.ant_glob(['gui/*.cpp', 'gui/*.cc', 'gui/images.qrc']),
+ source = bld.path.ant_glob(['gui/*.cpp', 'gui/*.cc', 'gui/*.qrc']),
includes = "ccnx scheduler executor fs-watcher gui src adhoc server . ",
use = "BOOST BOOST_FILESYSTEM SQLITE3 QTCORE QTGUI LOG4CXX fs_watcher ccnx database chronoshare http_server"
)