blob: af200bea880bb6bd859bc64b448da7d9ca51ff55 (
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
|
# -----------------------------------------------------------------------------
#
# -----------------------------------------------------------------------------
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)
set(TEST_LIBS
gmock_main
inkscape_base)
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})
add_dependencies(${source} inkscape_version)
add_dependencies(check ${source})
endforeach()
|