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

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

add_library(
  rsa

  OBJECT

  rsa.c
  rsa_impl.c
  blinding.c
  padding.c
  rsa_asn1.c
)

add_executable(
  rsa_test

  rsa_test.cc

  $<TARGET_OBJECTS:test_support>
)

target_link_libraries(rsa_test crypto)