Warning, /education/khipu/src/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 ki18n_wrap_ui(libkhipu_SRCS
0002   dictionarycollection.ui
0003   plotsbuilder.ui
0004   plotseditor.ui
0005   spaceinformation.ui
0006   spaceoptions.ui
0007   filter.ui
0008   dashboard.ui
0009 )
0010 
0011 add_library(libkhipu STATIC ${libkhipu_SRCS}
0012   spaceitem.cpp
0013   spacesmodel.cpp
0014   dictionarycollection.cpp
0015   plotsbuilder.cpp
0016   plotseditor.cpp
0017   spaceinformation.cpp
0018   spaceoptions.cpp
0019   filter.cpp
0020   spaceplotsproxymodel.cpp
0021   spacesdelegate.cpp
0022   datastore.cpp
0023   dashboard.cpp
0024   mainwindow.cpp)
0025 
0026 add_executable(khipu
0027   main.cpp
0028   ${CMAKE_SOURCE_DIR}/misc/desktop/khipu.qrc
0029 )
0030 
0031 target_link_libraries(khipu libkhipu)
0032 
0033 target_link_libraries(libkhipu
0034 PUBLIC
0035   Qt5::Widgets
0036   KF5::I18n
0037   KF5::ItemViews
0038   KF5::ItemModels
0039   KF5::GuiAddons
0040   KF5::WidgetsAddons
0041   KF5::XmlGui
0042   KF5::NewStuff
0043   KF5::KDELibs4Support
0044   KF5::AnalitzaGui
0045   KF5::AnalitzaWidgets
0046   KF5::AnalitzaPlot
0047 )
0048 
0049 install (TARGETS khipu ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})