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

CMakeLists.txt « pkcs8 « crypto - github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f674f915d9b87b26aaab66d4ac88546781da928 (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
32
include_directories(../../include)

add_library(
  pkcs8_lib

  OBJECT

  pkcs8.c
  p8_pkey.c
  p5_pbe.c
  p5_pbev2.c
)

if(ENABLE_TESTS)
add_executable(
  pkcs12_test

  pkcs12_test.cc

  $<TARGET_OBJECTS:test_support>
)

add_executable(
  pkcs8_test

  pkcs8_test.cc
)

target_link_libraries(pkcs8_test crypto)
target_link_libraries(pkcs12_test crypto)
add_dependencies(all_tests pkcs8_test pkcs12_test)
endif()