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

0001 find_package(Qt${QT_MAJOR_VERSION} ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE COMPONENTS Widgets)
0002 
0003 set(applicationitemapp_SRCS
0004     main.cpp
0005 )
0006 
0007 qt_add_resources(RESOURCES resources.qrc)
0008 
0009 add_executable(applicationitemapp ${applicationitemapp_SRCS} ${RESOURCES})
0010 target_link_libraries(applicationitemapp
0011     Qt${QT_MAJOR_VERSION}::Core
0012     Qt${QT_MAJOR_VERSION}::Qml
0013     Qt${QT_MAJOR_VERSION}::Quick
0014     Qt${QT_MAJOR_VERSION}::Svg
0015     Qt${QT_MAJOR_VERSION}::Widgets
0016 )
0017 
0018 install(TARGETS applicationitemapp ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
0019 
0020 include(${CMAKE_SOURCE_DIR}/KF5Kirigami2Macros.cmake)