added compilable version of openpgp sdk

git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-OpenPGP@5048 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2012-03-24 15:58:18 +00:00
parent 8cb15bdbef
commit 7d06d19e40
67 changed files with 20945 additions and 0 deletions

49
openpgpsdk/src/src.pro Normal file
View file

@ -0,0 +1,49 @@
TEMPLATE = lib
CONFIG = staticlib
DEFINES *= OPENSSL_NO_IDEA
QMAKE_CXXFLAGS *= -Wall -Werror -W
TARGET = ops
DESTDIR = ../lib
DEPENDPATH += .
INCLUDEPATH += . ../include
# Input
HEADERS += keyring_local.h parse_local.h
SOURCES += accumulate.c \
compress.c \
create.c \
crypto.c \
errors.c \
fingerprint.c \
hash.c \
keyring.c \
lists.c \
memory.c \
openssl_crypto.c \
packet-parse.c \
packet-print.c \
packet-show.c \
random.c \
reader.c \
reader_armoured.c \
reader_encrypted_se.c \
reader_encrypted_seip.c \
reader_fd.c \
reader_hashed.c \
reader_mem.c \
readerwriter.c \
signature.c \
symmetric.c \
util.c \
validate.c \
writer.c \
writer_armour.c \
writer_encrypt.c \
writer_encrypt_se_ip.c \
writer_fd.c \
writer_memory.c \
writer_skey_checksum.c \
writer_stream_encrypt_se_ip.c