equal
deleted
inserted
replaced
|
1 # Qt inputmethod module |
|
2 |
|
3 HEADERS +=inputmethod/qinputcontextfactory.h \ |
|
4 inputmethod/qinputcontextplugin.h \ |
|
5 inputmethod/qinputcontext_p.h \ |
|
6 inputmethod/qinputcontext.h |
|
7 SOURCES +=inputmethod/qinputcontextfactory.cpp \ |
|
8 inputmethod/qinputcontextplugin.cpp \ |
|
9 inputmethod/qinputcontext.cpp |
|
10 x11 { |
|
11 HEADERS += inputmethod/qximinputcontext_p.h |
|
12 SOURCES += inputmethod/qximinputcontext_x11.cpp |
|
13 } |
|
14 win32 { |
|
15 HEADERS += inputmethod/qwininputcontext_p.h |
|
16 SOURCES += inputmethod/qwininputcontext_win.cpp |
|
17 } |
|
18 embedded { |
|
19 HEADERS += inputmethod/qwsinputcontext_p.h |
|
20 SOURCES += inputmethod/qwsinputcontext_qws.cpp |
|
21 } |
|
22 mac:!embedded { |
|
23 HEADERS += inputmethod/qmacinputcontext_p.h |
|
24 SOURCES += inputmethod/qmacinputcontext_mac.cpp |
|
25 } |
|
26 symbian:contains(QT_CONFIG, s60) { |
|
27 HEADERS += inputmethod/qcoefepinputcontext_p.h |
|
28 SOURCES += inputmethod/qcoefepinputcontext_s60.cpp |
|
29 LIBS += -lfepbase |
|
30 } |
|
31 |