1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-06-19 04:50:03 +02:00

Add support for testing and add simple testcase for base58

This commit is contained in:
Henrik Hautakoski 2023-02-17 10:57:34 +01:00
parent d23aea0d19
commit ae4dd4027f
4 changed files with 137 additions and 0 deletions

View file

@ -71,6 +71,17 @@ target_include_directories( ${LIB_NAME}
${OPENSSL_INCLUDE_DIR}
)
# --------------------------------
# Tests
# --------------------------------
if (ENABLE_TESTING)
# enable testing functionality
include(CTest)
enable_testing()
add_subdirectory( tests )
endif (ENABLE_TESTING)
# --------------------------------
# Install
# --------------------------------