diff options
author | Joel Bodenmann <joel@unormal.org> | 2014-07-23 18:20:54 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2014-07-23 18:20:54 +0200 |
commit | 05dd4f404b6e5586c29141a7aa3dd5b54b1c88d6 (patch) | |
tree | 1ba77932d124018336dd9d1f2243b120dea5c6c8 /drivers/multiple | |
parent | ae50541fd7114cc12e9d520f43065b41d4a5d597 (diff) | |
download | uGFX-05dd4f404b6e5586c29141a7aa3dd5b54b1c88d6.tar.gz uGFX-05dd4f404b6e5586c29141a7aa3dd5b54b1c88d6.tar.bz2 uGFX-05dd4f404b6e5586c29141a7aa3dd5b54b1c88d6.zip |
Win32 readme fix
Diffstat (limited to 'drivers/multiple')
-rw-r--r-- | drivers/multiple/Win32/readme.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/multiple/Win32/readme.txt b/drivers/multiple/Win32/readme.txt index 353f5a5b..932deb8b 100644 --- a/drivers/multiple/Win32/readme.txt +++ b/drivers/multiple/Win32/readme.txt @@ -16,7 +16,14 @@ optionally a touchscreen driver, and optionally a toggle driver. 2. To your makefile add the following lines:
include $(GFXLIB)/gfx.mk
- include $(GFXLIB)/drivers/multiple/Win32/gdisp_lld.mk
+ include $(GFXLIB)/drivers/multiple/Win32/driver.mk
+
+ However, consider using the Win32 board file instead as this does include all
+ the possible drivers that can be used (eg. for the GAUDIO module) by using:
+
+ include $(GFXLIB)/gfx.mk
+ include $(GFXLIB)/boards/base/Win32/board.mk
+
3. Modify your makefile to add -lws2_32 and -lgdi32 to the DLIBS line. i.e.
DLIBS = -lws2_32 -lgdi32
|