summaryrefslogtreecommitdiffstats
path: root/kbarcode/CMakeLists.txt
blob: a16fbb08fa918f2217f120dbe930a3453c95f39a (plain)
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
add_subdirectory( pics )

include_directories(
  ${CMAKE_BINARY_DIR}
  ${CMAKE_CURRENT_BINARY_DIR}
  ${CMAKE_CURRENT_SOURCE_DIR}
  ${TDE_INCLUDE_DIR}
  ${TQT_INCLUDE_DIRS}
  ${PCRE_INCLUDE_DIRS}
)

link_directories(
  ${TQT_LIBRARY_DIRS}
  ${TDE_LIB_DIR}
)


##### kbarcode (executable)

tde_add_executable( ${PROJECT_NAME} AUTOMOC

  SOURCES 
        barcodecombo.cpp barcodedialog.cpp
        barcodedialogs.cpp commands.cpp
        configdialog.cpp confwizard.cpp
        csvimportdlg.cpp databasebrowser.cpp
        definition.cpp definitiondialog.cpp
        dsmainwindow.cpp kbarcode.cpp
        label.cpp labeleditor.cpp
        labelutils.cpp main.cpp
        mimesources.cpp multilineeditdlg.cpp
        mycanvasitem.cpp mycanvasview.cpp
        mydatatable.cpp newlabel.cpp
        previewdialog.cpp printersettings.cpp
        printlabeldlg.cpp rectsettingsdlg.cpp
        smalldialogs.cpp sqltables.cpp
        tokenprovider.cpp xmlutils.cpp
        zplutils.cpp measurements.cpp
        editoriface.skel kbarcodeiface.skel batchiface.skel
        kbarcodesettings.cpp batchprinter.cpp
        barcodeitem.cpp documentitem.cpp
        lineitem.cpp rectitem.cpp
        tcanvasitem.cpp textitem.cpp
        imageitem.cpp documentitemdlg.cpp
        propertywidget.cpp tec.cpp
        barcodeprinterdlg.cpp textlineitem.cpp
        textlineedit.cpp tokendialog.cpp
        barkode.cpp gnubarcode.cpp
        barkodeengine.cpp pixmapbarcode.cpp
        batchwizard.cpp csvfile.cpp
        dstextedit.cpp encodingcombo.cpp
        purepostscript.cpp tbarcode2.cpp
  LINK
     tdecore-shared
     tdeui-shared
     tdeio-shared
     tdeprint-shared
     tdeabc-shared
     kjs-shared
     ${PCRE_LIBRARIES}

  DESTINATION ${BIN_INSTALL_DIR}
)


##### icons

tde_install_icons( )


##### other data

install(
    FILES
        ${PROJECT_NAME}.desktop
        ${PROJECT_NAME}-batch.desktop
        ${PROJECT_NAME}-editor.desktop
        ${PROJECT_NAME}-single.desktop

  DESTINATION ${XDG_APPS_INSTALL_DIR}
)

install(
    FILES ${PROJECT_NAME}-label.desktop
    DESTINATION ${MIME_INSTALL_DIR}/application
)

install(
    FILES
        barcodes.html
        exampledata.sql
        labeldefinitions.sql
        barcode.ps
        rules.xml

  DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}
)