blob: 5634bb3138eaf01042d1b66451379d765c230d5e (
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
|
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### subfolders
add_subdirectory( backends )
add_subdirectory( datablocks )
add_subdirectory( dialogs )
add_subdirectory( exporters )
add_subdirectory( importers )
add_subdirectory( widgets )
##### krecipes (executable)
tde_add_executable( krecipes AUTOMOC
SOURCES
main.cpp krecipes.cpp krecipesview.cpp pref.cpp
krecipesiface.skel krecipesdbiface.skel
propertycalculator.cpp setupwizard.cpp
shoppingcalculator.cpp kstartuplogo.cpp
recipeactionshandler.cpp recipefilter.cpp
convert_sqlite3.cpp klomanager.cpp
LINK
krecipesdbs-static krecipesexporters-static krecipesimporters-static
krecipesdialogs-static krecipeswidgets-static datablocks-static
tdecore-shared tdeui-shared tdeio-shared tdeparts-shared
tdefx-shared tdehtml-shared DCOP-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### other files
install(
FILES krecipes.xpm
DESTINATION ${SHARE_INSTALL_PREFIX}/pixmaps
)
install(
FILES krecipesui.rc
DESTINATION ${DATA_INSTALL_DIR}/krecipes
)
tde_create_translated_desktop(
SOURCE krecipes.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
tde_install_icons( DESTINATION ${SHARE_INSTALL_PREFIX}/icons )
|