blob: 554ab8fdabc7fbd30cfa1441a127e15b6a617a52 (
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
28
29
30
31
32
33
|
# -----------------------------------------------------------------------------
#
# -----------------------------------------------------------------------------
if(NOT GTEST_FOUND) # not required for gtest 1.8.0 and later
add_subdirectory(${GMOCK_DIR} ${CMAKE_BINARY_DIR}/gmock)
include_directories(SYSTEM ${GMOCK_DIR}/gtest/include
${GMOCK_DIR}/include
${CMAKE_SOURCE_DIR}/gtest/gtest/include)
endif()
set(TEST_SOURCES
attributes-test
color-profile-test
dir-util-test
sp-object-test
object-set-test
style-test)
set(TEST_LIBS
gmock_main
inkscape_base)
add_custom_target(tests)
foreach(source ${TEST_SOURCES})
add_executable(${source} src/${source}.cpp unittest.cpp doc-per-case-test.cpp)
target_link_libraries(${source} ${TEST_LIBS})
add_test(NAME ${source} COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${source})
set_tests_properties(${source} PROPERTIES ENVIRONMENT ${CMAKE_CTEST_ENV})
add_dependencies(tests ${source})
endforeach()
add_subdirectory(rendering_tests)
|