Warning, /pim/kdepim-runtime/migration/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 include_directories(
0002   ${CMAKE_CURRENT_SOURCE_DIR}
0003   ${CMAKE_CURRENT_BINARY_DIR}
0004 )
0005 
0006 add_library(migrationshared STATIC )
0007 
0008 target_sources(migrationshared PRIVATE
0009   kmigratorbase.cpp
0010   infodialog.cpp
0011   entitytreecreatejob.cpp
0012   migratorbase.cpp
0013   kmigratorbase.h
0014   infodialog.h
0015   entitytreecreatejob.h
0016   migratorbase.h
0017 )
0018 
0019 ecm_qt_declare_logging_category(migrationshared
0020     HEADER migration_debug.h
0021     IDENTIFIER MIGRATION_LOG
0022     CATEGORY_NAME org.kde.pim.migration
0023     DESCRIPTION "migration (kdepim-runtime)"
0024     EXPORT KDEPIMRUNTIME
0025 )
0026 
0027 if (COMPILE_WITH_UNITY_CMAKE_SUPPORT)
0028     set_target_properties(migrationshared PROPERTIES UNITY_BUILD ON)
0029 endif()
0030 target_link_libraries(migrationshared
0031     KPim6::AkonadiCore
0032     KF6::ConfigCore
0033     KF6::I18n
0034     Qt::Widgets
0035 )
0036 
0037 
0038 add_subdirectory(gid)
0039 add_subdirectory(googlegroupware)
0040