cd5c892a87
Change-Id: I7af0753cac07756a75d03a4820a16f3f8b18d7ba Reviewed-on: https://boringssl-review.googlesource.com/3026 Reviewed-by: Adam Langley <agl@google.com>
19 lines
179 B
CMake
19 lines
179 B
CMake
include_directories(. .. ../../include)
|
|
|
|
add_library(
|
|
conf
|
|
|
|
OBJECT
|
|
|
|
conf.c
|
|
conf_error.c
|
|
)
|
|
|
|
add_executable(
|
|
conf_test
|
|
|
|
conf_test.c
|
|
)
|
|
|
|
target_link_libraries(conf_test crypto)
|