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.

17 lines
279 B

3 days ago
INCLUDEPATH += $$PWD/include
CONFIG += file_copies
CONFIG(debug, debug | release){
LIBS += -L$$PWD/lib -lQxOrmd
QxOrm.files = $$PWD/lib/QxOrmd.dll
}else {
LIBS += -L$$PWD/lib -lQxOrm
QxOrm.files = $$PWD/lib/QxOrm.dll
}
QxOrm.path = $$DESTDIR
COPIES += QxOrm
3 days ago