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.
34 lines
589 B
34 lines
589 B
13 years ago
|
TEMPLATE = lib
|
||
|
TARGET = qsqlmysql
|
||
|
|
||
|
CONFIG += qt plugin
|
||
|
DESTDIR = ../../../sqldrivers
|
||
|
|
||
|
HEADERS = ../../../../src/sql/drivers/mysql/qsql_mysql.h
|
||
|
SOURCES = main.cpp \
|
||
|
../../../../src/sql/drivers/mysql/qsql_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
|
||
|
# }
|
||
|
# win32-borland: {
|
||
|
# QMAKE_LFLAGS += /dlibmysql.dll
|
||
|
# }
|
||
|
}
|
||
|
|
||
|
REQUIRES = sql
|
||
|
|
||
|
target.path += $$plugins.path/sqldrivers
|
||
|
INSTALLS += target
|