diff --git a/CMakeLists.txt b/CMakeLists.txt index 4670b58..a57c02d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,11 +23,12 @@ endmacro() add_subdirectory(src) add_subdirectory(include) -add_subdirectory(amqp_boost_test) -include_directories(${CMAKE_SOURCE_DIR}/include) add_library(amqp-cpp STATIC ${SRCS}) 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} PARENT_SCOPE) diff --git a/README.md b/README.md index cbc6bf1..f8429cd 100644 --- a/README.md +++ b/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 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 to pass an object to the library that the library can use for that. So, before