Subversion Repositories public iLand

Rev

Rev 961 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1
 
959 werner 2
QT += xml
3
QT += qml
4
QT += sql
5
 
6
 
7
TEMPLATE      = lib
8
CONFIG       += plugin static
9
INCLUDEPATH  += ../.. \
10
                ../../tools \
11
                ../../output \
12
                ../../core
13
 
14
# to enable debug symbols in release code:
15
# uncomment then next two lines to enable debug information in release-mode executable
16
#QMAKE_CXXFLAGS_RELEASE += -g
17
#QMAKE_LFLAGS_RELEASE -= -Wl,-s
18
 
19
CONFIG += exceptions
20
HEADERS       = \
21
    barkbeetleplugin.h \
22
    barkbeetlemodule.h
23
 
24
SOURCES       = \
25
    barkbeetleplugin.cpp \
26
    barkbeetlemodule.cpp
27
TARGET        = $$qtLibraryTarget(iland_barkbeetle)
28
DESTDIR       = ../../plugins
29
 
30
 
31
 
32
 
33
 
34