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

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

if (${ARCH} STREQUAL "arm")
	set(
		POLY1305_ARCH_SOURCES

		poly1305_arm_asm.S
	)
endif()

add_library(
	poly1305

	OBJECT

	poly1305.c
	poly1305_arm.c
	poly1305_vec.c

	${POLY1305_ARCH_SOURCES}
)