Merge branch 'master' of github.com:CopernicaMarketingSoftware/AMQP-CPP
This commit is contained in:
commit
368f4485c9
|
|
@ -23,11 +23,12 @@ endmacro()
|
||||||
|
|
||||||
add_subdirectory(src)
|
add_subdirectory(src)
|
||||||
add_subdirectory(include)
|
add_subdirectory(include)
|
||||||
add_subdirectory(amqp_boost_test)
|
|
||||||
|
|
||||||
include_directories(${CMAKE_SOURCE_DIR}/include)
|
|
||||||
add_library(amqp-cpp STATIC ${SRCS})
|
add_library(amqp-cpp STATIC ${SRCS})
|
||||||
target_include_directories(amqp-cpp SYSTEM PUBLIC ${PROJECT_SOURCE_DIR})
|
target_include_directories(amqp-cpp SYSTEM PUBLIC ${PROJECT_SOURCE_DIR})
|
||||||
|
install(TARGETS amqp-cpp
|
||||||
|
ARCHIVE DESTINATION lib
|
||||||
|
)
|
||||||
|
|
||||||
set(AMQP-CPP_INCLUDE_PATH ${CMAKE_CURRENT_SOURCE_DIR})
|
set(AMQP-CPP_INCLUDE_PATH ${CMAKE_CURRENT_SOURCE_DIR})
|
||||||
set(AMQP-CPP_INCLUDE_PATH ${CMAKE_CURRENT_SOURCE_DIR} PARENT_SCOPE)
|
set(AMQP-CPP_INCLUDE_PATH ${CMAKE_CURRENT_SOURCE_DIR} PARENT_SCOPE)
|
||||||
|
|
|
||||||
11
README.md
11
README.md
|
|
@ -27,9 +27,16 @@ This library is created and maintained by Copernica (www.copernica.com), and is
|
||||||
used inside the MailerQ (www.mailerq.com) application, MailerQ is a tool for
|
used inside the MailerQ (www.mailerq.com) application, MailerQ is a tool for
|
||||||
sending large volumes of email, using AMQP message queues.
|
sending large volumes of email, using AMQP message queues.
|
||||||
|
|
||||||
|
Do you appreciate our work and are you looking for high quality email solutions?
|
||||||
|
Then check out our commercial solutions:
|
||||||
|
|
||||||
HOW TO USE
|
* Copernica Marketing Suite (www.copernica.com)
|
||||||
==========
|
* MailerQ MTA (www.mailerq.com)
|
||||||
|
* Responsive Email web service (www.responsiveemail.com)
|
||||||
|
|
||||||
|
|
||||||
|
HOW TO USE AMQP-CPP
|
||||||
|
===================
|
||||||
|
|
||||||
As we mentioned above, the library does not do any IO by itself, and you need
|
As we mentioned above, the library does not do any IO by itself, and you need
|
||||||
to pass an object to the library that the library can use for that. So, before
|
to pass an object to the library that the library can use for that. So, before
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue