~ubuntu-branches/debian/jessie/ugene/jessie

« back to all changes in this revision

Viewing changes to src/corelibs/U2Gui/U2Gui.pri

  • Committer: Package Import Robot
  • Author(s): Steffen Moeller
  • Date: 2011-11-02 13:29:07 UTC
  • mfrom: (1.2.1) (3.1.11 natty)
  • Revision ID: package-import@ubuntu.com-20111102132907-o34gwnt0uj5g6hen
Tags: 1.9.8+repack-1
* First release to Debian
  - added README.Debian
  - increased policy version to 3.9.2
  - added URLs for version control system
* Added debug package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# include (U2Gui.pri)
 
2
 
 
3
MODULE_ID=U2Gui
 
4
include( ../../ugene_lib_common.pri )
 
5
 
 
6
UGENE_RELATIVE_DESTDIR = ''
 
7
 
 
8
QT += network xml svg
 
9
DEFINES+= QT_FATAL_ASSERT BUILDING_U2GUI_DLL
 
10
INCLUDEPATH += ../U2Private/src
 
11
 
 
12
LIBS += -L../../_release -lU2Core -lU2Formats -lU2Misc -lU2Private
 
13
 
 
14
!debug_and_release|build_pass {
 
15
 
 
16
    CONFIG(debug, debug|release) {
 
17
        DESTDIR=../../_debug
 
18
        LIBS -= -L../../_release -lU2Core -lU2Formats -lU2Misc -lU2Private
 
19
        LIBS += -L../../_debug -lU2Cored -lU2Formatsd -lU2Miscd -lU2Privated
 
20
    }
 
21
 
 
22
    CONFIG(release, debug|release) {
 
23
        DESTDIR=../../_release
 
24
    }
 
25
}
 
26
 
 
27
unix {
 
28
    target.path = $$UGENE_INSTALL_DIR/$$UGENE_RELATIVE_DESTDIR
 
29
    INSTALLS += target
 
30
}
 
31