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

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

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

		chacha_vec_arm.S
	)
endif()

add_library(
	chacha

	OBJECT

	chacha_generic.c
	chacha_vec.c

	${CHACHA_ARCH_SOURCES}
)