summaryrefslogtreecommitdiffstats
path: root/src/crypto/pkcs8/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/pkcs8/CMakeLists.txt')
-rw-r--r--src/crypto/pkcs8/CMakeLists.txt21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/crypto/pkcs8/CMakeLists.txt b/src/crypto/pkcs8/CMakeLists.txt
new file mode 100644
index 0000000..1886fce
--- /dev/null
+++ b/src/crypto/pkcs8/CMakeLists.txt
@@ -0,0 +1,21 @@
+include_directories(. .. ../../include)
+
+add_library(
+ pkcs8
+
+ OBJECT
+
+ pkcs8.c
+ p8_pkey.c
+ p5_pbe.c
+ p5_pbev2.c
+ pkcs8_error.c
+)
+
+add_executable(
+ pkcs12_test
+
+ pkcs12_test.c
+)
+
+target_link_libraries(pkcs12_test crypto)