Warning, /office/kmymoney/kmymoney/converter/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 if(BUILD_TESTING)
0002   add_subdirectory( tests )
0003 endif()
0004 
0005 set (libconverter_a_SOURCES
0006   mymoneystatementreader.cpp
0007   mymoneytemplate.cpp
0008   webpricequote.cpp
0009   transactionmatchfinder.cpp
0010   existingtransactionmatchfinder.cpp
0011   scheduledtransactionmatchfinder.cpp
0012   ../widgets/kmymoneymoneyvalidator.cpp
0013 )
0014 
0015 add_library(converter STATIC ${libconverter_a_SOURCES})
0016 
0017 # TODO: clean dependencies
0018 target_link_libraries(converter
0019   PUBLIC
0020     KF5::Service
0021     KF5::XmlGui
0022     KF5::Completion
0023     KF5::TextWidgets
0024     KF5::WidgetsAddons
0025     KF5::ConfigCore
0026     Alkimia::alkimia
0027     KF5::KIOWidgets
0028     kmm_csvimportercore
0029   PRIVATE
0030     KF5::I18n
0031     kmymoney_common
0032     newaccountwizard
0033 )
0034 
0035 # we rely on some dialogs to be generated
0036 add_dependencies(converter dialogs)
0037 
0038 ########### install files ###############
0039 
0040 install(FILES mymoneytemplate.h
0041   DESTINATION ${INCLUDE_INSTALL_DIR}/kmymoney COMPONENT Devel)
0042