Warning, /frameworks/threadweaver/examples/ThumbNailer/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # Project name
0002 project(ThumbNailer)
0003 kde_enable_exceptions()
0004 set(CMAKE_INCLUDE_CURRENT_DIR ON)
0005 set(CMAKE_AUTOMOC ON)
0006 qt_wrap_ui(UI_FILES MainWindow.ui)
0007 add_executable(ThreadWeaver_ThumbNailer
0008     ThumbNailer.cpp
0009     Image.cpp
0010     Model.cpp
0011     MainWindow.cpp
0012     Benchmark.cpp
0013     PriorityDecorator.cpp
0014     ItemDelegate.cpp
0015     ImageListFilter.cpp
0016     FileLoaderJob.cpp
0017     ImageLoaderJob.cpp
0018     ComputeThumbNailJob.cpp
0019     AverageLoadManager.cpp
0020     ${UI_FILES}
0021 )
0022 target_link_libraries(ThreadWeaver_ThumbNailer KF5::ThreadWeaver Qt${QT_MAJOR_VERSION}::Test Qt${QT_MAJOR_VERSION}::Widgets)