Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1212 | werner | 1 | # iLand project file for the fire module. See iland.boku.ac.at |
641 | werner | 2 | QT += xml |
793 | werner | 3 | QT += qml |
641 | werner | 4 | QT += sql |
5 | |||
710 | werner | 6 | |
641 | werner | 7 | TEMPLATE = lib |
8 | CONFIG += plugin static |
||
9 | INCLUDEPATH += ../.. \ |
||
10 | ../../tools \ |
||
665 | werner | 11 | ../../output \ |
641 | werner | 12 | ../../core |
710 | werner | 13 | |
758 | werner | 14 | # to enable debug symbols in release code: |
15 | # uncomment then next two lines to enable debug information in release-mode executable |
||
780 | werner | 16 | #QMAKE_CXXFLAGS_RELEASE += -g |
17 | #QMAKE_LFLAGS_RELEASE -= -Wl,-s |
||
710 | werner | 18 | |
761 | werner | 19 | CONFIG += exceptions |
641 | werner | 20 | HEADERS = \ |
646 | werner | 21 | fireplugin.h \ |
665 | werner | 22 | firemodule.h \ |
674 | werner | 23 | fireout.h \ |
816 | werner | 24 | firescript.h |
641 | werner | 25 | SOURCES = \ |
646 | werner | 26 | fireplugin.cpp \ |
665 | werner | 27 | firemodule.cpp \ |
674 | werner | 28 | fireout.cpp \ |
816 | werner | 29 | firescript.cpp |
641 | werner | 30 | TARGET = $$qtLibraryTarget(iland_fire) |
780 | werner | 31 | DESTDIR = ../../plugins |
665 | werner | 32 | |
1157 | werner | 33 | DEFINES += NO_DEBUG_MSGS |
665 | werner | 34 | |
674 | werner | 35 | |
36 |