Warning, /sdk/dferry/applications/analyzer/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 set(CMAKE_INCLUDE_CURRENT_DIR ON)
0002 set(CMAKE_AUTOMOC ON)
0003 
0004 set(analyzer_SOURCES
0005     analyzer.cpp
0006     analyzermainwindow.cpp
0007     argumentsmodel.cpp
0008     eavesdroppermodel.cpp
0009     eavesdropperthread.cpp
0010     mainwidget.cpp
0011     messagesortfilter.cpp)
0012 
0013 qt5_wrap_ui(analyzer_SOURCES mainwidget.ui)
0014 
0015 add_executable(dfer-analyzer ${analyzer_SOURCES})
0016 target_link_libraries(dfer-analyzer Qt5::Widgets dfer)
0017 
0018 install(TARGETS dfer-analyzer DESTINATION ${CMAKE_INSTALL_BINDIR})