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   transactionmatchfinder.cpp
0008   existingtransactionmatchfinder.cpp
0009   scheduledtransactionmatchfinder.cpp
0010   ../widgets/kmymoneymoneyvalidator.cpp
0011 )
0012 
0013 add_library(converter STATIC ${libconverter_a_SOURCES})
0014 
0015 # TODO: clean dependencies
0016 target_link_libraries(converter
0017   PUBLIC
0018     KF5::Service
0019     KF5::XmlGui
0020     KF5::Completion
0021     KF5::TextWidgets
0022     KF5::WidgetsAddons
0023     Alkimia::alkimia
0024     KF5::KIOWidgets
0025     kmm_csvimportercore
0026     kmm_base_dialogs
0027   PRIVATE
0028     KF5::I18n
0029     kmymoney_common
0030     newaccountwizard
0031 )
0032 
0033 # we rely on some dialogs to be generated
0034 # add_dependencies(converter)
0035 
0036 ########### install files ###############
0037