qca/unittest/randomunittest/CMakeLists.txt
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

12 lines
308 B
CMake

ENABLE_TESTING()
set(randomunittest_bin_SRCS randomunittest.cpp)
MY_AUTOMOC( randomunittest_bin_SRCS )
add_executable( randomunittest ${randomunittest_bin_SRCS} )
target_link_libraries( randomunittest qca ${QT_QTTEST_LIBRARY})
ADD_TEST(RandomNumberGeneration ${EXECUTABLE_OUTPUT_PATH}/randomunittest)