Warning, /network/choqok/helperlibs/gnusocialapihelper/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 add_library(gnusocialapihelper SHARED)
0002 set_target_properties(gnusocialapihelper PROPERTIES
0003     VERSION 1.3.0
0004     SOVERSION 1
0005 )
0006 
0007 generate_export_header(gnusocialapihelper)
0008 
0009 ecm_qt_declare_logging_category(gnusocialapihelper
0010     HEADER gnusocialapidebug.h
0011     IDENTIFIER CHOQOK
0012     CATEGORY_NAME org.kde.choqok.gnusocialapi
0013     DESCRIPTION "choqok gnusocialapi library"
0014     EXPORT CHOQOK
0015 )
0016 
0017 target_sources(gnusocialapihelper PRIVATE
0018     gnusocialapiaccount.cpp
0019     gnusocialapicomposerwidget.cpp
0020     gnusocialapiconversationtimelinewidget.cpp
0021     gnusocialapidmessagedialog.cpp
0022     gnusocialapimicroblog.cpp
0023     gnusocialapipostwidget.cpp
0024     gnusocialapisearch.cpp
0025 )
0026 
0027 target_link_libraries(gnusocialapihelper
0028 PUBLIC
0029     Qt::Core
0030     Qt::NetworkAuth
0031     Qt::Xml
0032     Qt::Widgets
0033     KF5::CoreAddons
0034     KF5::I18n
0035     KF5::KIOCore
0036     KF5::KIOWidgets
0037     KF5::WidgetsAddons
0038     choqok
0039     twitterapihelper
0040 )
0041 
0042 install(TARGETS gnusocialapihelper ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
0043 install(FILES
0044     gnusocialapiaccount.h
0045     gnusocialapicomposerwidget.h
0046     gnusocialapiconversationtimelinewidget.h
0047     gnusocialapidmessagedialog.h
0048     gnusocialapimicroblog.h
0049     gnusocialapipostwidget.h
0050     gnusocialapisearch.h
0051     ${CMAKE_CURRENT_BINARY_DIR}/gnusocialapihelper_export.h
0052 DESTINATION ${KDE_INSTALL_INCLUDEDIR}/choqok/gnusocialapihelper COMPONENT Devel)