Last change
on this file since 41 was 27, checked in by dmik, 19 years ago |
QCA: General: Added OS/2-related defines to make it compile.
|
File size:
448 bytes
|
Rev | Line | |
---|
[24] | 1 | # qca qmake profile
|
---|
| 2 |
|
---|
| 3 | TEMPLATE = lib
|
---|
| 4 | CONFIG += qt thread release
|
---|
| 5 | TARGET = qca
|
---|
| 6 |
|
---|
| 7 | MOC_DIR = .moc
|
---|
| 8 | OBJECTS_DIR = .obj
|
---|
| 9 | UI_DIR = .ui
|
---|
| 10 |
|
---|
| 11 | VER_MAJ = 1
|
---|
| 12 | VER_MIN = 0
|
---|
| 13 |
|
---|
| 14 | # make DLL
|
---|
[27] | 15 | win32: {
|
---|
[24] | 16 | CONFIG += dll
|
---|
| 17 | DEFINES += QCA_MAKEDLL
|
---|
| 18 | }
|
---|
[27] | 19 | os2: {
|
---|
| 20 | CONFIG += dll
|
---|
| 21 | DEFINES += QCA_MAKEDLL
|
---|
| 22 | }
|
---|
[24] | 23 |
|
---|
| 24 | QCA_CPP = src
|
---|
| 25 | INCLUDEPATH += $$QCA_CPP
|
---|
| 26 |
|
---|
| 27 | HEADERS += \
|
---|
| 28 | $$QCA_CPP/qca.h \
|
---|
| 29 | $$QCA_CPP/qcaprovider.h
|
---|
| 30 |
|
---|
| 31 | SOURCES += \
|
---|
| 32 | $$QCA_CPP/qca.cpp
|
---|
| 33 |
|
---|
| 34 | include(conf.pri)
|
---|
| 35 | include(extra.pri)
|
---|
| 36 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.