Subversion Repositories public iLand

Rev

Rev 961 | Rev 1014 | Go to most recent revision | Details | Compare with Previous | 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 \
961 werner 22
    barkbeetlemodule.h \
964 werner 23
    barkbeetlescript.h \
24
    bbgenerations.h
959 werner 25
 
26
SOURCES       = \
27
    barkbeetleplugin.cpp \
961 werner 28
    barkbeetlemodule.cpp \
964 werner 29
    barkbeetlescript.cpp \
30
    bbgenerations.cpp
959 werner 31
TARGET        = $$qtLibraryTarget(iland_barkbeetle)
32
DESTDIR       = ../../plugins
33
 
34
 
35
 
36
 
37
 
38