Subversion Repositories public iLand

Rev

Rev 1104 | Rev 1212 | 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 \
1014 werner 24
    bbgenerations.h \
25
    barkbeetleout.h
959 werner 26
 
27
SOURCES       = \
28
    barkbeetleplugin.cpp \
961 werner 29
    barkbeetlemodule.cpp \
964 werner 30
    barkbeetlescript.cpp \
1014 werner 31
    bbgenerations.cpp \
32
    barkbeetleout.cpp
959 werner 33
TARGET        = $$qtLibraryTarget(iland_barkbeetle)
34
DESTDIR       = ../../plugins
35
 
1157 werner 36
DEFINES += NO_DEBUG_MSGS
959 werner 37
 
38
 
39
 
40
 
41