blob: 8137a6fc3ca62178afbaaaa2d94a9aa14deb0c09 [file] [log] [blame]
Robert Sloan9254e682017-04-24 09:42:06 -07001include_directories(../../include)
2
3add_library(
4 pkcs7
5
6 OBJECT
7
8 pkcs7.c
9 pkcs7_x509.c
10)
11
12add_executable(
13 pkcs7_test
14
15 pkcs7_test.c
16
17 $<TARGET_OBJECTS:test_support>
18)
19
20target_link_libraries(pkcs7_test crypto)
21add_dependencies(all_tests pkcs7_test)