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

0001 
0002 
0003 ecm_setup_version(${RELEASE_SERVICE_VERSION} VARIABLE_PREFIX KGEOGRAPHY VERSION_HEADER kgeography_version.h)
0004 
0005 ########### next target ###############
0006 
0007 set(kgeography_SRCS 
0008    kgeography.qrc
0009    main.cpp 
0010    mapwidget.cpp 
0011    division.cpp 
0012    map.cpp 
0013    mapparser.cpp 
0014    kgeography.cpp 
0015    mapchooser.cpp 
0016    mypopup.cpp 
0017    popupmanager.cpp 
0018    flagdivisionasker.cpp 
0019    askwidget.cpp 
0020    mapasker.cpp 
0021    placeasker.cpp 
0022    placemapwidget.cpp 
0023    capitaldivisionasker.cpp 
0024    divisioncapitalasker.cpp 
0025    boxasker.cpp 
0026    divisionflagasker.cpp 
0027    integerinputdialog.cpp
0028    answer.cpp 
0029    answersdialog.cpp )
0030 
0031 
0032 ki18n_wrap_ui(kgeography_SRCS kgeographyoptions.ui )
0033 
0034 kconfig_add_kcfg_files(kgeography_SRCS settings.kcfgc )
0035 
0036 add_executable(kgeography ${kgeography_SRCS})
0037 
0038 target_link_libraries(kgeography KF${QT_MAJOR_VERSION}::XmlGui
0039                                  KF${QT_MAJOR_VERSION}::WidgetsAddons
0040                                  KF${QT_MAJOR_VERSION}::CoreAddons
0041                                  KF${QT_MAJOR_VERSION}::ConfigWidgets
0042                                  KF${QT_MAJOR_VERSION}::Crash
0043                                  KF${QT_MAJOR_VERSION}::I18n
0044                                  KF${QT_MAJOR_VERSION}::ItemViews
0045                                  KF${QT_MAJOR_VERSION}::IconThemes
0046 )
0047 install(TARGETS kgeography EXPORT KGeography ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} )
0048 
0049 
0050 ########### install files ###############
0051 
0052 install( PROGRAMS org.kde.kgeography.desktop  DESTINATION  ${KDE_INSTALL_APPDIR} )
0053 install( FILES org.kde.kgeography.appdata.xml DESTINATION  ${KDE_INSTALL_METAINFODIR})
0054 install( FILES kgeography.kcfg  DESTINATION  ${KDE_INSTALL_KCFGDIR} )
0055 
0056 
0057