Subversion Repositories public iLand

Rev

Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1
 
1212 werner 2
# iLand project file for the barkbeetle module. See iland.boku.ac.at
959 werner 3
QT += xml
4
QT += qml
5
QT += sql
6
 
7
 
8
TEMPLATE      = lib
9
CONFIG       += plugin static
10
INCLUDEPATH  += ../.. \
11
                ../../tools \
12
                ../../output \
13
                ../../core
14
 
15
# to enable debug symbols in release code:
16
# uncomment then next two lines to enable debug information in release-mode executable
17
#QMAKE_CXXFLAGS_RELEASE += -g
18
#QMAKE_LFLAGS_RELEASE -= -Wl,-s
19
 
20
CONFIG += exceptions
21
HEADERS       = \
22
    barkbeetleplugin.h \
961 werner 23
    barkbeetlemodule.h \
964 werner 24
    barkbeetlescript.h \
1014 werner 25
    bbgenerations.h \
26
    barkbeetleout.h
959 werner 27
 
28
SOURCES       = \
29
    barkbeetleplugin.cpp \
961 werner 30
    barkbeetlemodule.cpp \
964 werner 31
    barkbeetlescript.cpp \
1014 werner 32
    bbgenerations.cpp \
33
    barkbeetleout.cpp
959 werner 34
TARGET        = $$qtLibraryTarget(iland_barkbeetle)
35
DESTDIR       = ../../plugins
36
 
1157 werner 37
DEFINES += NO_DEBUG_MSGS
959 werner 38
 
39
 
40
 
41
 
42