summaryrefslogtreecommitdiffstats
path: root/test.cmake
blob: c1aaadb69aa026a531e2dbf9455e6d199403e8c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
SET(TESTING OFF CACHE BOOL "Build tests")

IF (TESTING)
    ENABLE_TESTING()
ENDIF (TESTING)

MACRO (MAKE_TEST variable libraries class)
    KDE4_ADD_UNIT_TEST(test-${class}
        Test${class}.cpp
    )
    TARGET_LINK_LIBRARIES(test-${class}
        ${QT_QTCORE_LIBRARY}
        ${QT_QTTEST_LIBRARY}
        ${${libraries}}
    )
    SET(${variable}
        ${${variable}}
        test-${class}
    )
ENDMACRO (MAKE_TEST)

MACRO (MAKE_TEST_GROUP groupname tests)
    ADD_CUSTOM_TARGET(tests-${groupname}
        DEPENDS
            ${${tests}}
    )
ENDMACRO (MAKE_TEST_GROUP)