Warning, /graphics/libksane/tests/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 
0002 option(COMPILE_VIEWER_TESTAPP "Compile a small test application for the viewer")
0003 if (COMPILE_VIEWER_TESTAPP)
0004     message("Compile testapp")
0005     add_executable(viewertest
0006         ${CMAKE_SOURCE_DIR}/src/selectionitem.cpp
0007         ${CMAKE_SOURCE_DIR}/src/ksaneviewer.cpp
0008         ksaneviewertest.cpp
0009     )
0010     target_link_libraries(viewertest
0011         PRIVATE
0012             KSaneWidget
0013             KF${KF_MAJOR_VERSION}::I18n
0014             KF${KF_MAJOR_VERSION}::Wallet
0015             KF${KF_MAJOR_VERSION}::WidgetsAddons
0016     )
0017 endif()