~ubuntu-branches/debian/sid/kexi/sid

« back to all changes in this revision

Viewing changes to src/plugins/queries/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Pino Toscano
  • Date: 2017-06-24 20:10:10 UTC
  • Revision ID: package-import@ubuntu.com-20170624201010-5lrzd5r2vwthwifp
Tags: upstream-3.0.1.1
ImportĀ upstreamĀ versionĀ 3.0.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include_directories(${CMAKE_SOURCE_DIR}/src/core
 
2
    ${CMAKE_SOURCE_DIR}/src/widget ${CMAKE_SOURCE_DIR}/src/widget/tableview)
 
3
 
 
4
# the main plugin
 
5
set(kexi_queryplugin_SRCS
 
6
   kexiquerypart.cpp
 
7
   kexiquerydesignersql.cpp
 
8
   kexiquerydesignerguieditor.cpp
 
9
   kexiqueryview.cpp
 
10
)
 
11
 
 
12
add_library(kexi_queryplugin MODULE ${kexi_queryplugin_SRCS})
 
13
kcoreaddons_desktop_to_json(kexi_queryplugin kexi_queryplugin.desktop)
 
14
 
 
15
target_link_libraries(kexi_queryplugin
 
16
    PRIVATE
 
17
        kexicore
 
18
        kexiextendedwidgets
 
19
        kexidataviewcommon
 
20
        kexidatatable
 
21
        kexirelationsview
 
22
        kexiutils
 
23
 
 
24
        KDb
 
25
        KPropertyWidgets
 
26
 
 
27
        Qt5::Gui
 
28
        Qt5::Xml
 
29
)
 
30
 
 
31
install(TARGETS kexi_queryplugin  DESTINATION ${KEXI_PLUGIN_INSTALL_DIR})