e8261a0100
Not actually much of a change, but consistency. Change-Id: If2ef7a8b698a229f5c494822d870767e1a61476e Reviewed-on: https://boringssl-review.googlesource.com/4127 Reviewed-by: Adam Langley <agl@google.com>
18 lines
181 B
CMake
18 lines
181 B
CMake
include_directories(. .. ../../include)
|
|
|
|
add_library(
|
|
base64
|
|
|
|
OBJECT
|
|
|
|
base64.c
|
|
)
|
|
|
|
add_executable(
|
|
base64_test
|
|
|
|
base64_test.cc
|
|
)
|
|
|
|
target_link_libraries(base64_test crypto)
|