Warning, /office/kexi/src/core/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 add_definitions(-DKDE_DEFAULT_DEBUG_AREA=44020)
0002 
0003 set(kexicore_LIB_SRCS
0004    KexiGlobal.cpp
0005    kexi.cpp
0006    kexiaboutdata.cpp
0007    KexiMainWindowIface.cpp
0008    KexiStandardAction.cpp
0009    kexidbconnectionset.cpp
0010    kexiprojectset.cpp
0011    kexiactionproxy.cpp
0012    kexisharedactionhost.cpp
0013    kexiactioncategories.cpp
0014    kexiproject.cpp
0015    KexiWindow.cpp
0016    KexiWindowData.cpp
0017    KexiView.cpp
0018    kexipartmanager.cpp
0019    kexipartinfo.cpp
0020    kexipartitem.cpp
0021    kexipartbase.cpp
0022    kexipart.cpp
0023    kexipartguiclient.cpp
0024    kexiprojectdata.cpp
0025    KexiRecentProjects.cpp
0026    kexiinternalpart.cpp
0027    kexidragobjects.cpp
0028    kexistartupdata.cpp
0029    KexiCommandLineOptions.cpp
0030    kexiguimsghandler.cpp
0031    kexitextmsghandler.cpp
0032    kexidataiteminterface.cpp
0033    kexidbshortcutfile.cpp
0034    kexiblobbuffer.cpp
0035    #TODO KEXI3 kexistaticpart.cpp
0036    kexitabledesignerinterface.cpp
0037    kexisearchandreplaceiface.cpp
0038    kexitemplateloader.cpp
0039    KexiRecordNavigatorHandler.cpp
0040    KexiRecordNavigatorIface.cpp
0041    KexiSearchableModel.cpp
0042    KexiGroupButton.cpp #TODO belongs to widget/?
0043    KexiFileFilters.cpp
0044 )
0045 
0046 kexi_add_library(kexicore SHARED ${kexicore_LIB_SRCS})
0047 
0048 generate_export_header(kexicore)
0049 
0050 target_link_libraries(kexicore
0051     PUBLIC
0052         Qt5::Core
0053         Qt5::Gui
0054         Qt5::Widgets
0055 
0056         KF5::CoreAddons
0057         KF5::XmlGui
0058 
0059         kexiutils
0060 
0061         KDb
0062         KPropertyCore
0063 )
0064 
0065 install(TARGETS kexicore  ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
0066 #install(FILES kexihandler.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR})