diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index f6487ba..886e291 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -36,6 +36,11 @@ add_executable(asn1test asn1test.c) target_link_libraries(asn1test ${OPENSSL_LIBS}) add_test(asn1test asn1test) +# asn1time +add_executable(asn1time asn1time.c) +target_link_libraries(asn1time ${OPENSSL_LIBS}) +add_test(asn1time asn1time) + # base64test add_executable(base64test base64test.c) target_link_libraries(base64test ${OPENSSL_LIBS}) diff --git a/tests/Makefile.am b/tests/Makefile.am index 3d6a30d..63f9341 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -45,7 +45,7 @@ asn1test_SOURCES = asn1test.c # asn1time TESTS += asn1time check_PROGRAMS += asn1time -asn1test_SOURCES = asn1time.c +asn1time_SOURCES = asn1time.c # base64test TESTS += base64test