blob: 942d8abc7f31dea101e1291b279e6893ab83b183 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
TEMPLATE = lib
TARGET = qsqlibase
CONFIG += qt plugin
DESTDIR = ../../../sqldrivers
HEADERS = ../../../../src/sql/drivers/ibase/qsql_ibase.h
SOURCES = main.cpp \
../../../../src/sql/drivers/ibase/qsql_ibase.cpp
unix {
OBJECTS_DIR = .obj
!contains( LIBS, .*gds.* ):!contains( LIBS, .*libfb.* ) {
LIBS *= -lfbclient
}
}
win32 {
OBJECTS_DIR = obj
!win32-borland:LIBS *= gds32_ms.lib
win32-borland:LIBS += gds32.lib
}
REQUIRES = sql
target.path += $$plugins.path/sqldrivers
INSTALLS += target
|