mirror of
https://github.com/Hizenberg469/OTP-rfc4226-rfc6238-rfc4648.git
synced 2026-04-19 18:02:23 +03:00
11 lines
236 B
CMake
11 lines
236 B
CMake
add_library(${OTP_LIBRARY} STATIC
|
|
"rfc4226.c"
|
|
"rfc6238.c")
|
|
|
|
target_include_directories(${OTP_LIBRARY} PUBLIC
|
|
${HEADER_DIR}
|
|
${OPENSSL_HEADER})
|
|
|
|
target_link_libraries(${OTP_LIBRARY} PUBLIC
|
|
${OPENSSL_LIB}
|
|
m) |