Commit 2774b1fc authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/wince: compile the resource file as well.

parent 103a7a75
SUFFIXES = .rc
.rc.o:
$(WINDRES) -DUNDER_CE -D__MINGW32__ -I. -I$(srcdir) -i $< -o $@
SOURCES_wince = \ SOURCES_wince = \
wince.cpp \ wince.cpp \
wince.h \ wince.h \
...@@ -14,7 +18,7 @@ SOURCES_wince = \ ...@@ -14,7 +18,7 @@ SOURCES_wince = \
subtitles.cpp \ subtitles.cpp \
timer.cpp \ timer.cpp \
video.cpp \ video.cpp \
wince.rc \ wince_rc.rc \
$(NULL) $(NULL)
EXTRA_DIST += \ EXTRA_DIST += \
......
...@@ -7,6 +7,10 @@ ...@@ -7,6 +7,10 @@
#define UNDER_CE _WIN32_WCE #define UNDER_CE _WIN32_WCE
#endif #endif
#if !defined(_WIN32_WCE)
#define _WIN32_WCE UNDER_CE
#endif
#if defined(_WIN32_WCE) #if defined(_WIN32_WCE)
#define _WIN32_IE 0x0500 #define _WIN32_IE 0x0500
#include <commctrl.h> #include <commctrl.h>
...@@ -242,16 +246,26 @@ END ...@@ -242,16 +246,26 @@ END
// Icon with lowest ID value placed first to ensure application icon // Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems. // remains consistent on all systems.
#ifdef __MINGW32__
IDI_ICON1 ICON DISCARDABLE "bitmaps/vlc16x16.ico"
#else
IDI_ICON1 ICON DISCARDABLE "bitmaps\\vlc16x16.ico" IDI_ICON1 ICON DISCARDABLE "bitmaps\\vlc16x16.ico"
#endif
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// //
// Bitmap // Bitmap
// //
#ifdef __MINGW32__
IDB_BITMAP1 BITMAP DISCARDABLE "bitmaps/toolbar1.bmp"
IDB_BITMAP2 BITMAP DISCARDABLE "bitmaps/toolbar2.bmp"
IDB_BITMAP3 BITMAP DISCARDABLE "bitmaps/toolbar3.bmp"
#else
IDB_BITMAP1 BITMAP DISCARDABLE "bitmaps\\toolbar1.bmp" IDB_BITMAP1 BITMAP DISCARDABLE "bitmaps\\toolbar1.bmp"
IDB_BITMAP2 BITMAP DISCARDABLE "bitmaps\\toolbar2.bmp" IDB_BITMAP2 BITMAP DISCARDABLE "bitmaps\\toolbar2.bmp"
IDB_BITMAP3 BITMAP DISCARDABLE "bitmaps\\toolbar3.bmp" IDB_BITMAP3 BITMAP DISCARDABLE "bitmaps\\toolbar3.bmp"
#endif
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// //
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment