move w32-specific resources to a separate file to prevent building them on other platforms. Use an alias in the resource file to remove the need of copying the file.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15949 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2007-12-17 21:35:25 +00:00
parent 213d9a2ca1
commit 01a8a7f7af
4 changed files with 9 additions and 12 deletions

View file

@ -118,6 +118,9 @@ FORMS += rbutilqtfrm.ui \
sapicfgfrm.ui
RESOURCES += rbutilqt.qrc
win32 {
RESOURCES += rbutilqt-win.qrc
}
TRANSLATIONS += rbutil_de.ts \
rbutil_fr.ts \
@ -155,11 +158,3 @@ static {
message("using static plugin")
}
# copy sapi script
win32 {
system(copy ..\..\tools\sapi_voice.vbs builtin\sapi_voice.vbs)
}
!win32 {
system(mkdir builtin)
system(cp ../../tools/sapi_voice.vbs builtin/sapi_voice.vbs)
}