1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
include_directories(${CMAKE_SOURCE_DIR}/sheets ${KOMAIN_INCLUDES} ${FLAKE_INCLUDES} ${EIGEN2_INCLUDE_DIR})
########### next target ###############
kde4_add_plugin(kspreadbitopsmodule bitops.cpp)
target_link_libraries(kspreadbitopsmodule calligrasheetscommon)
install(TARGETS kspreadbitopsmodule DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES kspreadbitopsmodule.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES bitops.xml DESTINATION ${DATA_INSTALL_DIR}/sheets/functions)
########### next target ###############
kde4_add_plugin(kspreadconversionmodule conversion.cpp)
target_link_libraries(kspreadconversionmodule calligrasheetscommon)
install(TARGETS kspreadconversionmodule DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES kspreadconversionmodule.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES conversion.xml DESTINATION ${DATA_INSTALL_DIR}/sheets/functions)
########### next target ###############
kde4_add_plugin(kspreaddatabasemodule database.cpp)
target_link_libraries(kspreaddatabasemodule calligrasheetscommon)
install(TARGETS kspreaddatabasemodule DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES kspreaddatabasemodule.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES database.xml DESTINATION ${DATA_INSTALL_DIR}/sheets/functions)
########### next target ###############
kde4_add_plugin(kspreaddatetimemodule datetime.cpp)
target_link_libraries(kspreaddatetimemodule calligrasheetscommon)
install(TARGETS kspreaddatetimemodule DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES kspreaddatetimemodule.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES datetime.xml DESTINATION ${DATA_INSTALL_DIR}/sheets/functions)
########### next target ###############
kde4_add_plugin(kspreadengineeringmodule engineering.cpp)
target_link_libraries(kspreadengineeringmodule calligrasheetscommon)
install(TARGETS kspreadengineeringmodule DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES kspreadengineeringmodule.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES engineering.xml DESTINATION ${DATA_INSTALL_DIR}/sheets/functions)
########### next target ###############
kde4_add_plugin(kspreadfinancialmodule financial.cpp)
target_link_libraries(kspreadfinancialmodule calligrasheetscommon)
install(TARGETS kspreadfinancialmodule DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES kspreadfinancialmodule.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES financial.xml DESTINATION ${DATA_INSTALL_DIR}/sheets/functions)
########### next target ###############
kde4_add_plugin(kspreadinformationmodule information.cpp)
target_link_libraries(kspreadinformationmodule calligrasheetscommon)
install(TARGETS kspreadinformationmodule DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES kspreadinformationmodule.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES information.xml DESTINATION ${DATA_INSTALL_DIR}/sheets/functions)
########### next target ###############
kde4_add_plugin(kspreadlogicmodule logic.cpp)
target_link_libraries(kspreadlogicmodule calligrasheetscommon)
install(TARGETS kspreadlogicmodule DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES kspreadlogicmodule.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES logic.xml DESTINATION ${DATA_INSTALL_DIR}/sheets/functions)
########### next target ###############
kde4_add_plugin(kspreadmathmodule math.cpp)
target_link_libraries(kspreadmathmodule calligrasheetscommon)
install(TARGETS kspreadmathmodule DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES kspreadmathmodule.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES math.xml DESTINATION ${DATA_INSTALL_DIR}/sheets/functions)
########### next target ###############
kde4_add_plugin(kspreadreferencemodule reference.cpp)
target_link_libraries(kspreadreferencemodule calligrasheetscommon)
install(TARGETS kspreadreferencemodule DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES kspreadreferencemodule.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES reference.xml DESTINATION ${DATA_INSTALL_DIR}/sheets/functions)
########### next target ###############
kde4_add_plugin(kspreadstatisticalmodule statistical.cpp)
target_link_libraries(kspreadstatisticalmodule calligrasheetscommon)
install(TARGETS kspreadstatisticalmodule DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES kspreadstatisticalmodule.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES statistical.xml DESTINATION ${DATA_INSTALL_DIR}/sheets/functions)
########### next target ###############
kde4_add_plugin(kspreadtextmodule text.cpp)
target_link_libraries(kspreadtextmodule calligrasheetscommon)
install(TARGETS kspreadtextmodule DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES kspreadtextmodule.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES text.xml DESTINATION ${DATA_INSTALL_DIR}/sheets/functions)
########### next target ###############
kde4_add_plugin(kspreadtrigonometrymodule trig.cpp)
target_link_libraries(kspreadtrigonometrymodule calligrasheetscommon)
install(TARGETS kspreadtrigonometrymodule DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES kspreadtrigonometrymodule.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES trig.xml DESTINATION ${DATA_INSTALL_DIR}/sheets/functions)
|