blob: 57f47b66ea570ffa1097ee5846601b53bd0b6f77 (
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
|
TEMPLATE = lib
TARGET = qsqlpsql
CONFIG += qt plugin
DESTDIR = ../../../sqldrivers
HEADERS = ../../../../src/sql/drivers/psql/tqsql_psql.h
SOURCES = main.cpp \
../../../../src/sql/drivers/psql/tqsql_psql.cpp
unix {
OBJECTS_DIR = .obj
!contains( LIBS, .*pq.* ) {
LIBS *= -lpq
}
}
win32 {
OBJECTS_DIR = obj
LIBS *= libpqdll.lib
# win32-msvc: {
# LIBS *= delayimp.lib
# QMAKE_LFLAGS += /DELAYLOAD:libpq.dll
# }
# win32-borland: {
# QMAKE_LFLAGS += /dlibpq.dll
# }
}
REQUIRES = sql
target.path += $$plugins.path/sqldrivers
INSTALLS += target
|