Warning, /office/calligra/devtools/cstester/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 add_subdirectory(visualimagecompare)
0002 add_subdirectory(cstrunner)
0003 
0004 configure_file(config_cstester.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config_cstester.h)
0005 
0006 include_directories(
0007     ${KOMAIN_INCLUDES}
0008     ${KOPAGEAPP_INCLUDES}
0009     ${CMAKE_SOURCE_DIR}/sheets
0010     ${CMAKE_SOURCE_DIR}/words/part
0011     ${CMAKE_SOURCE_DIR}/karbon/ui
0012 )
0013 
0014 set(cstester_SRCS
0015     CSThumbProviderStage.cpp
0016     CSThumbProviderTables.cpp
0017     CSThumbProviderWords.cpp
0018     cstester.cpp )
0019 
0020 if(SHOULD_BUILD_KARBON)
0021     set(cstester_SRCS ${cstester_SRCS}
0022         CSThumbProviderKarbon.cpp)
0023 endif()
0024 
0025 add_executable(cstester ${cstester_SRCS})
0026 
0027 target_link_libraries(cstester komain kopageapp koplugin calligrasheetscommon wordsprivate)
0028 if(SHOULD_BUILD_KARBON)
0029     target_link_libraries(cstester karbonui)
0030 endif()
0031 
0032 install(TARGETS cstester  ${INSTALL_TARGETS_DEFAULT_ARGS})
0033