1 | #always install the library
|
---|
2 | win32|os2 {
|
---|
3 | dlltarget.path=$$[QT_INSTALL_BINS]
|
---|
4 | INSTALLS += dlltarget
|
---|
5 | }
|
---|
6 | target.path=$$[QT_INSTALL_LIBS]
|
---|
7 | INSTALLS += target
|
---|
8 |
|
---|
9 | #headers
|
---|
10 | qt_install_headers {
|
---|
11 | INSTALL_HEADERS = $$SYNCQT.HEADER_FILES
|
---|
12 | equals(TARGET, QtCore) {
|
---|
13 | #headers generated by configure
|
---|
14 | INSTALL_HEADERS *= $$QT_BUILD_TREE/src/corelib/global/qconfig.h \
|
---|
15 | $$QT_SOURCE_TREE/src/corelib/arch/$$QT_ARCH/arch
|
---|
16 | }
|
---|
17 |
|
---|
18 | flat_headers.files = $$INSTALL_HEADERS
|
---|
19 | flat_headers.path = $$[QT_INSTALL_HEADERS]/Qt
|
---|
20 | INSTALLS += flat_headers
|
---|
21 |
|
---|
22 | targ_headers.files = $$INSTALL_HEADERS $$SYNCQT.HEADER_CLASSES
|
---|
23 | targ_headers.path = $$[QT_INSTALL_HEADERS]/$$TARGET
|
---|
24 | INSTALLS += targ_headers
|
---|
|
---|