source: trunk/plugins/src/sqldrivers/ibase/ibase.pro

Last change on this file was 204, checked in by rudi, 14 years ago

Added plugin source code

File size: 540 bytes
Line 
1TEMPLATE = lib
2TARGET = qsqlibase
3
4CONFIG += qt plugin
5DESTDIR = ../../../sqldrivers
6
7HEADERS = ../../../../src/sql/drivers/ibase/qsql_ibase.h
8SOURCES = main.cpp \
9 ../../../../src/sql/drivers/ibase/qsql_ibase.cpp
10
11unix {
12 OBJECTS_DIR = .obj
13
14 !contains( LIBS, .*gds.* ):!contains( LIBS, .*libfb.* ) {
15 LIBS *= -lgds
16 }
17}
18win32 {
19 OBJECTS_DIR = obj
20 !win32-borland:LIBS *= gds32_ms.lib
21 win32-borland:LIBS += gds32.lib
22}
23
24REQUIRES = sql
25
26target.path += $$plugins.path/sqldrivers
27INSTALLS += target
Note: See TracBrowser for help on using the repository browser.