summaryrefslogtreecommitdiff
path: root/crypto/evp/CMakeLists.txt
blob: 43e351a705a1449ccf9d5de54d71262ce19496b6 (plain)
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
include_directories(. .. ../../include)

add_library(
	evp

	OBJECT

	algorithm.c
	asn1.c
	digestsign.c
	evp.c
	evp_ctx.c
	evp_error.c
	p_ec.c
	p_ec_asn1.c
	p_hmac.c
	p_hmac_asn1.c
	p_rsa.c
	p_rsa_asn1.c
	pbkdf.c
	sign.c
)


add_executable(
	example_sign

	example_sign.c
)

target_link_libraries(example_sign crypto)