source: trunk/src/plugins/sqldrivers/odbc/odbc.pro@ 5

Last change on this file since 5 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 422 bytes
Line 
1TARGET = qsqlodbc
2
3HEADERS = ../../../sql/drivers/odbc/qsql_odbc.h
4SOURCES = main.cpp \
5 ../../../sql/drivers/odbc/qsql_odbc.cpp
6
7mac {
8 !contains( LIBS, .*odbc.* ) {
9 LIBS *= -liodbc
10 }
11}
12
13unix {
14 !contains( LIBS, .*odbc.* ) {
15 LIBS *= -lodbc
16 }
17}
18
19win32 {
20 !win32-borland:LIBS *= -lodbc32
21 win32-borland:LIBS *= $(BCB)/lib/PSDK/odbc32.lib
22}
23
24include(../qsqldriverbase.pri)
Note: See TracBrowser for help on using the repository browser.