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

« back to all changes in this revision

Viewing changes to src/corelibs/U2Formats/U2Formats.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 (U2Formats.pri)
 
2
 
 
3
MODULE_ID=U2Formats
 
4
include( ../../ugene_lib_common.pri )
 
5
 
 
6
UGENE_RELATIVE_DESTDIR = ''
 
7
 
 
8
DEFINES+= QT_FATAL_ASSERT BUILDING_U2FORMATS_DLL
 
9
 
 
10
LIBS += -L../../_release -lU2Core -lU2Algorithm
 
11
 
 
12
!debug_and_release|build_pass {
 
13
 
 
14
    CONFIG(debug, debug|release) {
 
15
        DESTDIR=../../_debug
 
16
        LIBS -= -L../../_release -lU2Core -lU2Algorithm
 
17
        LIBS += -L../../_debug -lU2Cored -lU2Algorithmd
 
18
    }
 
19
 
 
20
    CONFIG(release, debug|release) {
 
21
        DESTDIR=../../_release
 
22
    }
 
23
}
 
24
 
 
25
unix {
 
26
    target.path = $$UGENE_INSTALL_DIR/$$UGENE_RELATIVE_DESTDIR
 
27
    INSTALLS += target
 
28
}
 
29