Warning, /office/calligra/filters/sheets/html/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 include_directories(
0002     ${CMAKE_SOURCE_DIR}/sheets
0003     
0004     ${KOMAIN_INCLUDES}
0005 )
0006 
0007 
0008 if(SHOULD_BUILD_FILTER_HTML_TO_ODS)
0009 
0010 set(html2ods_PART_SRCS htmlimport.cc HtmlImportDebug.cpp)
0011 add_library(calligra_filter_html2ods MODULE ${html2ods_PART_SRCS})
0012 calligra_filter_desktop_to_json(calligra_filter_html2ods calligra_filter_html2ods.desktop)
0013 target_link_libraries(calligra_filter_html2ods komain KF5::KHtml)
0014 install(TARGETS calligra_filter_html2ods  DESTINATION ${PLUGIN_INSTALL_DIR}/calligra/formatfilters)
0015 
0016 endif()
0017 
0018 
0019 if(SHOULD_BUILD_FILTER_SHEETS_TO_HTML)
0020 
0021 set(sheets2html_PART_SRCS htmlexport.cc exportdialog.cc )
0022 ki18n_wrap_ui(sheets2html_PART_SRCS exportwidget.ui )
0023 add_library(calligra_filter_sheets2html MODULE ${sheets2html_PART_SRCS})
0024 calligra_filter_desktop_to_json(calligra_filter_sheets2html calligra_filter_sheets2html.desktop)
0025 target_link_libraries(calligra_filter_sheets2html calligrasheetscommon KF5::KIOWidgets)
0026 install(TARGETS calligra_filter_sheets2html  DESTINATION ${PLUGIN_INSTALL_DIR}/calligra/formatfilters)
0027 
0028 endif()