Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « ecdsa « crypto - github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f0caf07c103c6817bd900f11d0d947ea8503450 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include_directories(. .. ../../include)

add_library(
	ecdsa

	OBJECT

	ecdsa.c
	ecdsa_asn1.c
	ecdsa_error.c
)


add_executable(
	ecdsa_test

	ecdsa_test.c
)

target_link_libraries(ecdsa_test crypto)