SimpleAmqpClient
Simple C++ Interface to rabbitmq-c
파일 탐색기
최종 버전 다운로드 (.zip)- base.Dockerfile
- devcontainer.json
- Dockerfile
- ci.yml
- FindRabbitmqc.cmake
- LibFindMacros.cmake
- AmqpException.h
- AmqpLibraryException.h
- AmqpResponseLibraryException.h
- BadUriException.h
- BasicMessage.h
- Bytes.h
- Channel.h
- ChannelImpl.h
- ConnectionClosedException.h
- ConsumerCancelledException.h
- ConsumerTagNotFoundException.h
- Envelope.h
- MessageRejectedException.h
- MessageReturnedException.h
- SimpleAmqpClient.h
- Table.h
- TableImpl.h
- Util.h
- Version.h
- AmqpException.cpp
- AmqpLibraryException.cpp
- AmqpResponseLibraryException.cpp
- BasicMessage.cpp
- Channel.cpp
- ChannelImpl.cpp
- Envelope.cpp
- MessageReturnedException.cpp
- Table.cpp
- TableImpl.cpp
- CMakeLists.txt
- connected_test.h
- test_ack.cpp
- test_channels.cpp
- test_connect.cpp
- test_consume.cpp
- test_exchange.cpp
- test_get.cpp
- test_message.cpp
- test_nack.cpp
- test_publish.cpp
- test_queue.cpp
- test_table.cpp
- googletest
- .clang-format
- .gitattributes
- .gitignore
- .gitmodules
- .travis.yml
- ChangeLog.md
- CMakeLists.txt
- CONTRIBUTING.md
- Doxyfile.in
- libSimpleAmqpClient.pc.in
- LICENSE-MIT
- README.md
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/alanxz/SimpleAmqpClient
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd SimpleAmqpClient
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. CMake
보통 추천사전 준비물
cd cmake -G "Visual Studio 16" -A x64 -DBoost_INCLUDE_DIR="C:/boost.XX.XX.X.X/lib/native/include" -DBOOST_ROOT="C:/boost.X.XX.X.X" -DBOOST_LIBRARYDIR="C:/boost" -DRabbitmqc_INCLUDE_DIR="C:/rabbitmq-c/include" -DRabbitmqc_LIBRARY="C:/rabbitmq-c/lib/rabbitmq.4.lib" -DBoost_USE_STATIC_LIBS=ON -DBUILD_STATIC_LIBS=ON -DENABLE_SSL_SUPPORT=OFF ..
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
cmake ..
소스코드를 분석해 빌드 설정 파일을 생성합니다 (build 폴더 안에서 실행해야 함).
build 폴더 안에 실행 파일이 생성됐는지 확인하고, 직접 실행해보세요 (예: ./build/앱이름).
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
// repository documentation
Was this content helpful?
(0 ratings)
