Rabbitmq implementation using Qt
-
wrote on 15 Jun 2021, 11:09 last edited by
@SGaist said in Rabbitmq implementation using Qt:
libqamqp0.lib
no,there is nothing like libqamqp0.lib and no any .lib file .
it is containing only .o,.cpp, qamqp.exe,make,release and debug file -
Did you open the main .pro file ? The one at the top of the project ?
-
Can you build just the src project ?
-
wrote on 16 Jun 2021, 04:31 last edited by
@SGaist
I tried to build src by opening src.pro.But it is not creating any exe file(src.exe) and showing error: You need to set an executable in the custom run configuration.
after manually setting an executable(src.exe) i am getting this Error:09:58:42: Starting C:\Users\Deepa\Downloads\New folder\qamqp-master(4)\qamqp-master\build-src-Desktop_Qt_5_15_0_MinGW_64_bit-Debug\debug\src.exe ...
09:58:42: Failed to start program. Path or permissions wrong?
09:58:42: C:\Users\Deepa\Downloads\New folder\qamqp-master(4)\qamqp-master\build-src-Desktop_Qt_5_15_0_MinGW_64_bit-Debug\debug\src.exe exited with code -1
09:58:42: The process failed to start. Either the invoked program "C:\Users\Deepa\Downloads\New folder\qamqp-master(4)\qamqp-master\build-src-Desktop_Qt_5_15_0_MinGW_64_bit-Debug\debug\src.exe" is missing, or you may have insufficient permissions to invoke the program. -
@SGaist
I tried to build src by opening src.pro.But it is not creating any exe file(src.exe) and showing error: You need to set an executable in the custom run configuration.
after manually setting an executable(src.exe) i am getting this Error:09:58:42: Starting C:\Users\Deepa\Downloads\New folder\qamqp-master(4)\qamqp-master\build-src-Desktop_Qt_5_15_0_MinGW_64_bit-Debug\debug\src.exe ...
09:58:42: Failed to start program. Path or permissions wrong?
09:58:42: C:\Users\Deepa\Downloads\New folder\qamqp-master(4)\qamqp-master\build-src-Desktop_Qt_5_15_0_MinGW_64_bit-Debug\debug\src.exe exited with code -1
09:58:42: The process failed to start. Either the invoked program "C:\Users\Deepa\Downloads\New folder\qamqp-master(4)\qamqp-master\build-src-Desktop_Qt_5_15_0_MinGW_64_bit-Debug\debug\src.exe" is missing, or you may have insufficient permissions to invoke the program.@daisyvish said in Rabbitmq implementation using Qt:
it is not creating any exe file
I guess because it is a library, so a library file is created?
-
@daisyvish said in Rabbitmq implementation using Qt:
it is not creating any exe file
I guess because it is a library, so a library file is created?
-
@jsulm
It is creating libqamqpd.a file. Is it library file?
except this these are also created:
qamqpd.dll ,qamqp.prl,qamqpd.prl,some make, release and build files.@daisyvish said in Rabbitmq implementation using Qt:
Is it library file?
Yes, it is a static library.
qamqpd.dll is the shared library. -
@daisyvish said in Rabbitmq implementation using Qt:
Is it library file?
Yes, it is a static library.
qamqpd.dll is the shared library.wrote on 16 Jun 2021, 06:30 last edited by@jsulm @SGaist
ok ,that's mean library is created.Then what to do next to run the project.
should i open tutorial.pro or qamqp.pro or any other .pro file to implement project. -
@jsulm @SGaist
ok ,that's mean library is created.Then what to do next to run the project.
should i open tutorial.pro or qamqp.pro or any other .pro file to implement project.@daisyvish You need to add this library to your app. See here for more details: https://doc.qt.io/qt-5/third-party-libraries.html
27/27