blob: f29a217a5ec1f71c404cf295936cc0fc322baf4f (
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
|
include_directories(${librabbitmq_SOURCE_DIR} ${librabbitmq_BINARY_DIR})
if (WIN32)
set(PLATFORM_DIR win32)
set(PLATFORM_SRCS
windows/compat.c
)
else (WIN32)
set(PLATFORM_DIR unix)
endif (WIN32)
include_directories(${PLATFORM_DIR})
set(COMMON_SRCS
common.h
common.c
${PLATFORM_SRCS}
)
add_executable(amqp-publish publish.c ${COMMON_SRCS})
target_link_libraries(amqp-publish rabbitmq)
add_executable(amqp-get get.c ${COMMON_SRCS})
target_link_libraries(amqp-get rabbitmq)
add_executable(amqp-consume consume.c ${PLATFORM_DIR}/process.c ${COMMON_SRCS})
target_link_libraries(amqp-consume rabbitmq)
add_executable(amqp-declare-queue declare_queue.c ${COMMON_SRCS})
target_link_libraries(amqp-declare-queue rabbitmq)
add_executable(amqp-delete-queue delete_queue.c ${COMMON_SRCS})
target_link_libraries(amqp-delete-queue rabbitmq)
|