Windows implementation of IKeyboard interface

Located in a win subfolder. It uses keyboard hooks to get
key up and down events. Keymapping is done in a separate
windows specific class.

refs #83
This commit is contained in:
Roland Winklmeier
2014-03-05 15:17:07 +01:00
parent f8ce8a84cd
commit a7465fa6a3
5 changed files with 428 additions and 0 deletions

View File

@@ -40,6 +40,10 @@ SOURCES += *.cpp
HEADERS += $$PWD/fsx/*.h
SOURCES += $$PWD/fsx/*.cpp
win32 {
HEADERS += $$PWD/win/*.h
SOURCES += $$PWD/win/*.cpp
}
win32:!win32-g++*: PRE_TARGETDEPS += ../../lib/blackmisc.lib ../../lib/blacksound.lib
else: PRE_TARGETDEPS += ../../lib/libblackmisc.a ../../lib/libblacksound.a