This library provides a simple and nice C++ wrapper around these libraries, so that programmers can concentrate on functionality. It offers general support for PCSC-lite, OpenSSL, PKCS#11, plus specific functionality for the SuisseID.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.3 KiB
46 lines
1.3 KiB
15 years ago
|
## @id $Id$
|
||
|
|
||
|
## 1 2 3 4 5 6 7 8
|
||
|
## 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
||
|
|
||
11 years ago
|
noinst_PROGRAMS = pcsc-demo cryptoki-sign-demo cryptoki-demo \
|
||
|
openssl-tcp-demo openssl-ssl-demo \
|
||
11 years ago
|
openssl-engine-demo cardos-demo \
|
||
11 years ago
|
create-files-demo
|
||
15 years ago
|
|
||
11 years ago
|
AM_CPPFLAGS += -I${top_srcdir}/src
|
||
11 years ago
|
AM_LDFLAGS = -L${top_builddir}/src -lpcscxx
|
||
|
if MINGW32
|
||
11 years ago
|
AM_LDFLAGS += -lwinscard -lws2_32 -lgdi32
|
||
11 years ago
|
endif
|
||
15 years ago
|
|
||
14 years ago
|
if MAC
|
||
|
AM_CPPFLAGS+=-I/Library/OpenSC/include
|
||
11 years ago
|
AM_LDFLAGS += -F/System/Library/Frameworks/PCSC.framework -framework PCSC -L/opt/local/lib -lcrypto
|
||
14 years ago
|
endif
|
||
|
if !MINGW32
|
||
|
if !MAC
|
||
11 years ago
|
AM_LDFLAGS += -lpcsclite
|
||
14 years ago
|
endif
|
||
|
endif
|
||
14 years ago
|
if !MINGW32
|
||
11 years ago
|
AM_LDFLAGS += -ldl -lpthread -lssl -lcrypto
|
||
15 years ago
|
endif
|
||
15 years ago
|
|
||
14 years ago
|
pcsc_demo_SOURCES = pcsc-demo.cxx
|
||
15 years ago
|
cryptoki_demo_SOURCES = cryptoki-demo.cxx
|
||
11 years ago
|
cryptoki_sign_demo_SOURCES = cryptoki-sign-demo.cxx
|
||
15 years ago
|
openssl_tcp_demo_SOURCES = openssl-tcp-demo.cxx
|
||
|
openssl_ssl_demo_SOURCES = openssl-ssl-demo.cxx
|
||
14 years ago
|
openssl_engine_demo_SOURCES = openssl-engine-demo.cxx
|
||
11 years ago
|
cardos_demo_SOURCES = cardos-demo.cxx
|
||
11 years ago
|
create_files_demo_SOURCES = create-files-demo.cxx
|
||
|
|
||
|
if HAVE_QTNETWORK
|
||
|
noinst_PROGRAMS += suisse-id-demo
|
||
|
noinst_HEADERS = suisse-id-demo.hxx
|
||
11 years ago
|
suisse_id_demo_SOURCES = suisse-id-demo.cxx
|
||
11 years ago
|
endif
|
||
11 years ago
|
CLEANFILES = ${BUILT_SOURCES}
|
||
15 years ago
|
MAINTAINERCLEANFILES = makefile.in
|