Warning, /libraries/libqmycroft/lib/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 set(qmycroft_SRCS qmycroftplugin.cpp skillmanager.cpp skillentry.cpp controller.cpp audiotranscribe.cpp)
0002 
0003 include_directories(${CMAKE_CURRENT_BINARY_DIR})
0004 qt5_add_resources(qmycroft_SRCS libqmycroft.qrc)
0005 
0006 add_library(qmycroftplugin SHARED ${qmycroft_SRCS} ${RESOURCES})
0007 
0008 target_link_libraries(qmycroftplugin
0009     Qt5::Core 
0010     Qt5::Quick
0011     Qt5::Qml
0012     Qt5::Network
0013     Qt5::WebSockets
0014     Qt5::Multimedia
0015 )
0016 
0017 ########### install files ###############
0018 install(TARGETS qmycroftplugin DESTINATION ${KDE_INSTALL_QMLDIR}/Libqmycroft)
0019 install(FILES qmldir DESTINATION ${KDE_INSTALL_QMLDIR}/Libqmycroft)
0020 install(DIRECTORY qml/ DESTINATION ${KDE_INSTALL_QMLDIR}/Libqmycroft)
0021 install(FILES plugins.qmltypes DESTINATION ${KDE_INSTALL_QMLDIR}/Libqmycroft)