Warning, /office/calligra/filters/sheets/gnumeric/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 include_directories(
0002 ${CMAKE_SOURCE_DIR}/sheets
0003 ${KOMAIN_INCLUDES}
0004 )
0005
0006
0007 if(SHOULD_BUILD_FILTER_SHEETS_TO_GNUMERIC)
0008
0009 set(sheets2gnumeric_PART_SRCS gnumericexport.cc )
0010 add_library(calligra_filter_sheets2gnumeric MODULE ${sheets2gnumeric_PART_SRCS})
0011 calligra_filter_desktop_to_json(calligra_filter_sheets2gnumeric calligra_filter_sheets2gnumeric.desktop)
0012 target_link_libraries(calligra_filter_sheets2gnumeric calligrasheetscommon kowidgets KF5::Archive)
0013
0014 install(TARGETS calligra_filter_sheets2gnumeric DESTINATION ${PLUGIN_INSTALL_DIR}/calligra/formatfilters)
0015
0016
0017 endif()
0018
0019
0020 if(SHOULD_BUILD_FILTER_GNUMERIC_TO_SHEETS)
0021
0022 set(gnumeric2sheets_PART_SRCS gnumericimport.cc )
0023 add_library(calligra_filter_gnumeric2sheets MODULE ${gnumeric2sheets_PART_SRCS})
0024 calligra_filter_desktop_to_json(calligra_filter_gnumeric2sheets calligra_filter_gnumeric2sheets.desktop)
0025 target_link_libraries(calligra_filter_gnumeric2sheets calligrasheetscommon kowidgets KF5::Archive)
0026 install(TARGETS calligra_filter_gnumeric2sheets DESTINATION ${PLUGIN_INSTALL_DIR}/calligra/formatfilters)
0027
0028
0029 endif()