summaryrefslogtreecommitdiffstats
path: root/plugins/src/sqldrivers/odbc/odbc.pro
blob: 314de4217410b853798c109da173056fc9470c4e (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	 = 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 {
        !contains( LIBS, .*odbc.* ) {
            LIBS        *= -liodbc
        }
}

unix {
	OBJECTS_DIR	= .obj
	!contains( LIBS, .*odbc.* ) {
	    LIBS 	*= -lodbc
	}
}

win32 {
	OBJECTS_DIR		= obj
	LIBS	*= -lodbc32
}

REQUIRES	= sql

target.path += $$plugins.path/sqldrivers
INSTALLS += target