CMakeLists.txt 212 B

12345678910
  1. add_library(security
  2. BSecurity.c
  3. BEncryption.c
  4. BHash.c
  5. BRandom.c
  6. OTPCalculator.c
  7. OTPChecker.c
  8. OTPGenerator.c
  9. )
  10. target_link_libraries(security system threadwork ${LIBCRYPTO_LIBRARIES})