You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
431 B
34 lines
431 B
13 years ago
|
# qca qmake profile
|
||
|
|
||
|
TEMPLATE = lib
|
||
|
CONFIG += qt thread release
|
||
|
TARGET = qca
|
||
|
|
||
|
MOC_DIR = .moc
|
||
|
OBJECTS_DIR = .obj
|
||
|
UI_DIR = .ui
|
||
|
|
||
|
VER_MAJ = 1
|
||
|
VER_MIN = 0
|
||
|
|
||
|
# make DLL
|
||
|
win32:{
|
||
|
CONFIG += dll
|
||
|
DEFINES += QCA_MAKEDLL
|
||
|
}
|
||
|
|
||
|
QCA_CPP = src
|
||
|
INCLUDEPATH += $$QCA_CPP
|
||
|
INCLUDEPATH += /usr/include/tqt
|
||
|
|
||
|
HEADERS += \
|
||
|
$$QCA_CPP/qca.h \
|
||
|
$$QCA_CPP/qcaprovider.h
|
||
|
|
||
|
SOURCES += \
|
||
|
$$QCA_CPP/qca.cpp
|
||
|
|
||
|
include(conf.pri)
|
||
|
include(extra.pri)
|
||
|
|