4a0f0c4910
find -name CMakeLists.txt -type f | xargs sed -e 's/\t/ /g' -i Change-Id: I01636b1849c00ba918f48828252492d99b0403ac
20 lines
209 B
CMake
20 lines
209 B
CMake
include_directories(. .. ../../include)
|
|
|
|
add_library(
|
|
bytestring
|
|
|
|
OBJECT
|
|
|
|
ber.c
|
|
cbs.c
|
|
cbb.c
|
|
)
|
|
|
|
add_executable(
|
|
bytestring_test
|
|
|
|
bytestring_test.c
|
|
)
|
|
|
|
target_link_libraries(bytestring_test crypto)
|