diff options
-rwxr-xr-x | build_mingw_binaries.sh | 3 | ||||
-rw-r--r-- | doc/Makefile.am | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/build_mingw_binaries.sh b/build_mingw_binaries.sh index 36576ae..254f214 100755 --- a/build_mingw_binaries.sh +++ b/build_mingw_binaries.sh @@ -19,8 +19,9 @@ make install DESTDIR=$TEMP_TREE # copy experiment-player files cp $TEMP_TREE/usr/bin/* $TEMP_ZIP -cp $TEMP_TREE/usr/share/doc/experiment-player/* $TEMP_ZIP/doc +cp -r $TEMP_TREE/usr/share/doc/experiment-player/* $TEMP_ZIP/doc cp $TEMP_TREE/usr/share/experiment-player/*.ui $TEMP_ZIP/ui +cp $TEMP_TREE/usr/share/libexperiment-reader/session.dtd $TEMP_ZIP # copy required DLLs (except GTK+) cp /mingw/bin/libvlc*.dll $TEMP_ZIP diff --git a/doc/Makefile.am b/doc/Makefile.am index 452bbd7..c555b78 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -8,7 +8,10 @@ DB_URI = http://docbook.sourceforge.net/release/xsl/current if BUILD_HTML nobase_dist_html_DATA = experiment-player.html \ images/data-window-new.png images/player-window-new.png \ - images/quick-open-empty.png images/quick-open.png + images/quick-open-empty.png images/quick-open.png \ + images/format-expressions.png images/format-file-selection.png \ + images/format-menu.png + endif CLEANFILES = experiment-player.html html_titlepage.xsl EXTRA_DIST = experiment-player.xml html_custom.xsl html_titlepage.spec.xml |