blob: 6e538b39715cbcdd9e82f3b82d1193445b5cedba (
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
|
TEMPLATE = lib
TARGET = qsqlmysql
CONFIG += qt plugin
DESTDIR = ../../../sqldrivers
HEADERS = ../../../../src/sql/drivers/mysql/tqsql_mysql.h
SOURCES = main.cpp \
../../../../src/sql/drivers/mysql/tqsql_mysql.cpp
unix {
OBJECTS_DIR = .obj
!contains( LIBS, .*mysql.* ) {
LIBS *= -lmysqlclient
}
}
win32 {
OBJECTS_DIR = obj
LIBS *= libmysql.lib
# win32-msvc: {
# LIBS *= delayimp.lib
# QMAKE_LFLAGS += /DELAYLOAD:libmysql.dll
# }
}
REQUIRES = sql
target.path += $$plugins.path/sqldrivers
INSTALLS += target
|