File: qca-cyrus-sasl.pro

package info (click to toggle)
qca-cyrus-sasl 2.0.0-beta3-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 160 kB
  • ctags: 138
  • sloc: cpp: 763; makefile: 8
file content (33 lines) | stat: -rw-r--r-- 630 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
TEMPLATE = lib
CONFIG += plugin
QT -= gui
DESTDIR = lib

VERSION = 2.0.0

unix:include(conf.pri)
windows:CONFIG += crypto
windows:include(conf_win.pri)

CONFIG += create_prl

SOURCES = qca-cyrus-sasl.cpp

windows:{
	load(winlocal.prf)
	isEmpty(WINLOCAL_PREFIX) {
		error("WINLOCAL_PREFIX not found.  See http://delta.affinix.com/platform/#winlocal")
	}

	CYRUSSASL_PREFIX = $$WINLOCAL_PREFIX

	INCLUDEPATH += $$CYRUSSASL_PREFIX/include
	LIBS += -L$$CYRUSSASL_PREFIX/lib -lsasl
}

!debug_and_release|build_pass {
	CONFIG(debug, debug|release) {
		mac:TARGET = $$member(TARGET, 0)_debug
		windows:TARGET = $$member(TARGET, 0)d
	}
}