blob: ba9058e06908cd7e3d664c78f2fdbed8f6b41ab0 (
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
28
29
30
31
32
33
|
TEMPLATE = lib
TARGET = qsqlodbc
CONFIG += qt plugin
DESTDIR = ../../../sqldrivers
HEADERS = ../../../../src/sql/drivers/odbc/tqsql_odbc.h
SOURCES = main.cpp \
../../../../src/sql/drivers/odbc/tqsql_odbc.cpp
mac {
!tqcontains( LIBS, .*odbc.* ) {
LIBS *= -liodbc
}
}
unix {
OBJECTS_DIR = .obj
!tqcontains( LIBS, .*odbc.* ) {
LIBS *= -lodbc
}
}
win32 {
OBJECTS_DIR = obj
!win32-borland:LIBS *= -lodbc32
win32-borland:LIBS *= $(BCB)/lib/PSDK/odbc32.lib
}
REQUIRES = sql
target.path += $$plugins.path/sqldrivers
INSTALLS += target
|