blob: d0f68fa32a63be09f5255a3fc2bcb294d04ebdca (
plain) (
blame)
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
|
INCLUDE(${QT_USE_FILE})
QT4_WRAP_CPP(
mcastsend_MOC
mcastsend.h
)
QT4_WRAP_CPP(
mcastreceive_MOC
mcastreceive.h
)
SET(argparser_SRC
McastConfigArgParser.h
McastConfigArgParser.cpp
)
ADD_EXECUTABLE(mcastsend
mcastsend.cpp
mcastsend.h
${argparser_SRC}
${mcastsend_MOC}
)
ADD_EXECUTABLE(mcastreceive
mcastreceive.cpp
mcastreceive.h
${argparser_SRC}
${mcastreceive_MOC}
)
TARGET_LINK_LIBRARIES(mcastsend
pvsmcast
)
TARGET_LINK_LIBRARIES(mcastreceive
pvsmcast
)
|