summaryrefslogtreecommitdiffstats
path: root/src/crypto/pkcs8/CMakeLists.txt
blob: c0f2746d526e2853151c28f7ab10c8b92577f54f (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(
  pkcs8

  OBJECT

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

add_executable(
  pkcs12_test

  pkcs12_test.cc
)

target_link_libraries(pkcs12_test crypto)