2e0f0711dd
Since ERR will soon have thread-local storage, we don't need to worry about high-performance implementations and thus don't need to be able to switch two different implementations at run-time. Change-Id: I0598054ee8a8b499ac686ea635a96f5d03c754e0
50 lines
785 B
CMake
50 lines
785 B
CMake
include_directories(. .. ../../include)
|
|
|
|
add_custom_command(
|
|
OUTPUT err_data.c
|
|
COMMAND ${GO_EXECUTABLE} run err_data_generate.go > ${CMAKE_CURRENT_BINARY_DIR}/err_data.c
|
|
DEPENDS
|
|
err_data_generate.go
|
|
asn1.errordata
|
|
bio.errordata
|
|
bn.errordata
|
|
buf.errordata
|
|
cipher.errordata
|
|
conf.errordata
|
|
crypto.errordata
|
|
dh.errordata
|
|
digest.errordata
|
|
dsa.errordata
|
|
ecdh.errordata
|
|
ecdsa.errordata
|
|
ec.errordata
|
|
engine.errordata
|
|
evp.errordata
|
|
hkdf.errordata
|
|
obj.errordata
|
|
pem.errordata
|
|
pkcs8.errordata
|
|
rsa.errordata
|
|
ssl.errordata
|
|
x509.errordata
|
|
x509v3.errordata
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
add_library(
|
|
err
|
|
|
|
OBJECT
|
|
|
|
err.c
|
|
err_data.c
|
|
)
|
|
|
|
add_executable(
|
|
err_test
|
|
|
|
err_test.cc
|
|
)
|
|
|
|
target_link_libraries(err_test crypto)
|