include_directories(
    ${CMAKE_CURRENT_BINARY_DIR}
)

set(testlocationtable_SRCS
    testlocationtable.cpp
)
kde4_add_unit_test(testlocationtable ${testlocationtable_SRCS})
target_link_libraries(testlocationtable
    ${QT_QTTEST_LIBRARY}
    ${QT_QTCORE_LIBRARY}
)

set(testmemorypool_SRCS
    testmemorypool.cpp
)
kde4_add_unit_test(testmemorypool ${testmemorypool_SRCS})
target_link_libraries(testmemorypool
    ${QT_QTTEST_LIBRARY}
    ${QT_QTCORE_LIBRARY}
)

set(benchmarks_SRCS
    benchmarks.cpp
)
kde4_add_unit_test(benchmarks ${benchmarks_SRCS})
target_link_libraries(benchmarks
    ${QT_QTTEST_LIBRARY}
    ${QT_QTCORE_LIBRARY}
)

