boringssl/crypto/pkcs8/CMakeLists.txt
Adam Langley 4a0f0c4910 Change CMakeLists.txt to two-space indent.
find -name CMakeLists.txt -type f | xargs sed -e 's/\t/  /g' -i

Change-Id: I01636b1849c00ba918f48828252492d99b0403ac
2015-01-28 16:37:10 -08:00

22 lines
230 B
CMake

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)