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

« back to all changes in this revision

Viewing changes to src/libs_3rdparty/qtbindings_xml/qtbindings_xml.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
 
##################################################################
2
 
# Unipro UGENE - Integrated Bioinformatics Suite
3
 
# Copyright (C) 2008 Unipro, Russia (http://ugene.unipro.ru)
4
 
# All Rights Reserved
5
 
6
 
#
7
 
#     This source code is distributed under the terms of the
8
 
#     GNU General Public License. See the files COPYING and LICENSE
9
 
#     for details.
10
 
##################################################################
11
 
 
12
 
include( ../../ugene_globals.pri )
13
 
UGENE_RELATIVE_DESTDIR = 'plugins/script'
14
 
 
15
 
TEMPLATE = lib
16
 
CONFIG +=thread debug_and_release warn_off
17
 
INCLUDEPATH += src
18
 
QT -= gui
19
 
QT += script xml
20
 
DEFINES+= _CRT_SECURE_NO_WARNINGS
21
 
TARGET = qtbindings_xml
22
 
 
23
 
!debug_and_release|build_pass {
24
 
    CONFIG(debug, debug|release) {
25
 
        TARGET = qtbindings_xmld
26
 
        DEFINES+=_DEBUG
27
 
        DESTDIR=../../_debug/plugins/script
28
 
        OBJECTS_DIR=_tmp/obj/debug
29
 
        MOC_DIR=_tmp/moc/debug
30
 
    }
31
 
 
32
 
    CONFIG(release, debug|release) {
33
 
        TARGET = qtbindings_xml
34
 
        DEFINES+=NDEBUG
35
 
        DESTDIR=../../_release/plugins/script
36
 
        OBJECTS_DIR=_tmp/obj/release/
37
 
        MOC_DIR=_tmp/moc/release
38
 
    }
39
 
}
40
 
 
41
 
 
42
 
win32 {
43
 
    QMAKE_CXXFLAGS_WARN_ON = -W3
44
 
    QMAKE_CFLAGS_WARN_ON = -W3
45
 
    QMAKE_MSVC_PROJECT_NAME=lib_3rd_qtbindings_xml
46
 
}
47
 
 
48
 
unix {
49
 
    target.path = $$UGENE_INSTALL_DIR/$$UGENE_RELATIVE_DESTDIR
50
 
    INSTALLS += target
51
 
}