~ubuntu-branches/ubuntu/jaunty/qca2-plugin-ossl/jaunty

« back to all changes in this revision

Viewing changes to qca-ossl.pro

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-08-11 01:15:48 UTC
  • Revision ID: james.westby@ubuntu.com-20070811011548-a3ku0fl1usxkau0p
Tags: upstream-0.1~20070706
ImportĀ upstreamĀ versionĀ 0.1~20070706

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
TEMPLATE = lib
 
2
CONFIG += plugin
 
3
QT -= gui
 
4
CONFIG += crypto
 
5
DESTDIR = lib
 
6
 
 
7
VERSION = 1.0.0
 
8
 
 
9
include(conf.pri)
 
10
 
 
11
CONFIG += create_prl
 
12
 
 
13
# default windows config for now
 
14
windows:CONFIG += debug_and_release build_all
 
15
 
 
16
SOURCES = qca-ossl.cpp
 
17
 
 
18
windows:{
 
19
        load(winlocal.prf)
 
20
        OPENSSL_PREFIX = $$WINLOCAL_PREFIX
 
21
        DEFINES += OSSL_097
 
22
 
 
23
        INCLUDEPATH += $$OPENSSL_PREFIX/include
 
24
        LIBS += -L$$OPENSSL_PREFIX/lib
 
25
        LIBS += -llibeay32 -lssleay32
 
26
        LIBS += -lgdi32 -lwsock32
 
27
}
 
28
 
 
29
CONFIG(debug, debug|release) {
 
30
        unix:TARGET = $$join(TARGET,,,_debug)
 
31
        else:TARGET = $$join(TARGET,,,d)
 
32
}