- add all cmake files
[platform/upstream/libzypp.git] / devel / CMakeLists.txt
1 INCLUDE_DIRECTORIES( ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${KDE3_INCLUDE_DIR} ${QT_INCLUDE_DIR}  )
2
3
4 ########### next target ###############
5
6 SET(Example.createResolvable.bin_SRCS
7 Example.createResolvable.cc
8 )
9
10 KDE3_AUTOMOC(${Example.createResolvable.bin_SRCS})
11
12 KDE3_ADD_EXECUTABLE(Example.createResolvable.bin ${Example.createResolvable.bin_SRCS})
13
14 TARGET_LINK_LIBRARIES(Example.createResolvable.bin  ${QT_AND_KDECORE_LIBS} )
15
16
17 ########### next target ###############
18
19 SET(Example.createCapabilities.bin_SRCS
20 Example.createCapabilities.cc
21 )
22
23 KDE3_AUTOMOC(${Example.createCapabilities.bin_SRCS})
24
25 KDE3_ADD_EXECUTABLE(Example.createCapabilities.bin ${Example.createCapabilities.bin_SRCS})
26
27 TARGET_LINK_LIBRARIES(Example.createCapabilities.bin  ${QT_AND_KDECORE_LIBS} )
28
29
30 ########### next target ###############
31
32 SET(Example.COW_debug.bin_SRCS
33 Example.COW_debug.cc
34 )
35
36 KDE3_AUTOMOC(${Example.COW_debug.bin_SRCS})
37
38 KDE3_ADD_EXECUTABLE(Example.COW_debug.bin ${Example.COW_debug.bin_SRCS})
39
40 TARGET_LINK_LIBRARIES(Example.COW_debug.bin  ${QT_AND_KDECORE_LIBS} )
41
42
43 ########### next target ###############
44
45 SET(Example.EditionCompare.bin_SRCS
46 Example.EditionCompare.cc
47 )
48
49 KDE3_AUTOMOC(${Example.EditionCompare.bin_SRCS})
50
51 KDE3_ADD_EXECUTABLE(Example.EditionCompare.bin ${Example.EditionCompare.bin_SRCS})
52
53 TARGET_LINK_LIBRARIES(Example.EditionCompare.bin  ${QT_AND_KDECORE_LIBS} )
54
55
56 ########### install files ###############
57
58
59
60
61 #original Makefile.am contents follow:
62
63 ### Process this file with automake to produce Makefile.in
64 ### ##################################################
65 #
66 ## Do NOT list devel.* in subdirs. It's developers playgound
67 ## and must not prevent anything from building.
68 #
69 #SUBDIRS =
70 #
71 ### ##################################################
72 #
73 #noinst_PROGRAMS = \
74 #       Example.createResolvable.bin    \
75 #       Example.createCapabilities.bin  \
76 #       Example.COW_debug.bin           \
77 #       Example.EditionCompare.bin
78 #
79 ### ##################################################
80 #
81 #LDADD =        $(top_srcdir)/zypp/lib@PACKAGE@.la
82 #
83 ### ##################################################
84 #
85 #Example_createResolvable_bin_SOURCES   = Example.createResolvable.cc
86 #Example_createCapabilities_bin_SOURCES         = Example.createCapabilities.cc
87 #Example_COW_debug_bin_SOURCES          = Example.COW_debug.cc
88 #Example_EditionCompare_bin_SOURCES     = Example.EditionCompare.cc
89 #
90 ### ##################################################
91 #
92 #.PHONY:        always
93 #
94 #$(noinst_PROGRAMS):    $(top_srcdir)/zypp/lib@PACKAGE@.la
95 #
96 #$(top_srcdir)/zypp/lib@PACKAGE@.la:     always
97 #       $(MAKE) -C $(top_srcdir)/zypp
98 #
99 ### ##################################################