4
0
mirror of https://github.com/QuasarApp/qca.git synced 2025-05-14 03:29:32 +00:00
Brad Hards 131bf8eaac Add automated unittesting support. Now, you can
just "make test" and it will run the appropriate
tests.

svn path=/trunk/kdesupport/qca/; revision=609827
2006-12-02 11:53:32 +00:00

13 lines
292 B
CMake

ENABLE_TESTING()
set( dsaunittest_bin_SRCS dsaunittest.cpp)
MY_AUTOMOC( dsaunittest_bin_SRCS )
add_executable( dsaunittest ${dsaunittest_bin_SRCS} )
target_link_libraries( dsaunittest qca ${QT_QTTEST_LIBRARY})
ADD_TEST(DigitalSignatureAlgorithm ${EXECUTABLE_OUTPUT_PATH}/dsaunittest)